File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
7
## [ Unreleased]
8
- ...
8
+ - Add forward compatibility with Symfony 5 ( # 235 , thanks to @ garak )
9
9
10
10
## 3.1.0 - 2019-07-02
11
11
- Add support for Symfony 2.8 (#233 , thanks to @nocive )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class Configuration implements ConfigurationInterface
21
21
* @throws \InvalidArgumentException
22
22
* @throws \RuntimeException
23
23
*/
24
- public function getConfigTreeBuilder ()
24
+ public function getConfigTreeBuilder (): TreeBuilder
25
25
{
26
26
$ treeBuilder = new TreeBuilder ('sentry ' );
27
27
/** @var ArrayNodeDefinition $rootNode */
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class SentryExtension extends Extension
32
32
*
33
33
* @throws InvalidConfigurationException
34
34
*/
35
- public function load (array $ configs , ContainerBuilder $ container )
35
+ public function load (array $ configs , ContainerBuilder $ container ): void
36
36
{
37
37
$ configuration = new Configuration ();
38
38
$ processedConfiguration = $ this ->processConfiguration ($ configuration , $ configs );
You can’t perform that action at this time.
0 commit comments