File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ - Add return typehints to the methods of the ` SentryExtension ` class to prepare for Symfony 6 (#563 )
6
+
5
7
## 4.2.3 (2021-09-21)
6
8
7
9
- Fix: Test if ` TracingStatement ` exists before attempting to create the class alias, otherwise it breaks when opcache is enabled. (#552 )
Original file line number Diff line number Diff line change @@ -43,15 +43,15 @@ final class SentryExtension extends ConfigurableExtension
43
43
/**
44
44
* {@inheritdoc}
45
45
*/
46
- public function getXsdValidationBasePath ()
46
+ public function getXsdValidationBasePath (): string
47
47
{
48
48
return __DIR__ . '/../Resources/config/schema ' ;
49
49
}
50
50
51
51
/**
52
52
* {@inheritdoc}
53
53
*/
54
- public function getNamespace ()
54
+ public function getNamespace (): string
55
55
{
56
56
return 'https://sentry.io/schema/dic/sentry-symfony ' ;
57
57
}
You can’t perform that action at this time.
0 commit comments