File tree Expand file tree Collapse file tree 4 files changed +2
-4
lines changed
Tests/SymfonyRollbarBundle/DependencyInjection Expand file tree Collapse file tree 4 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ class Configuration implements ConfigurationInterface
54
54
* @var array
55
55
*/
56
56
public static $ exclude = [
57
- '\Symfony\Component\Debug\Exception\FatalErrorException ' ,
58
57
];
59
58
60
59
/**
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ More documentation here [here](https://github.com/OxCom/symfony-rollbar-bundle/t
19
19
symfony_rollbar:
20
20
enable: true
21
21
exclude:
22
- - \S ymfony\C omponent\D ebug\E xception\F atalErrorException
23
22
- \A ppBundle\E xceptions\M yAwesomeException
24
23
rollbar:
25
24
access_token: ' some-secret-token-here'
Original file line number Diff line number Diff line change @@ -7,8 +7,7 @@ Simple configuration of bundle:
7
7
8
8
symfony_rollbar :
9
9
enable : true
10
- exclude :
11
- - \Symfony\Component\Debug\Exception\FatalErrorException
10
+ exclude : []
12
11
rollbar :
13
12
access_token : ' some-secret-token-here'
14
13
environment : ' %kernel.environment%'
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ public function testParameters()
22
22
$ defaultErrorMask = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR ;
23
23
24
24
$ exclude = Configuration::$ exclude ;
25
+ $ exclude [] = '\Symfony\Component\Debug\Exception\FatalErrorException ' ;
25
26
$ exclude [] = '\SymfonyRollbarBundle\Tests\Fixtures\MyAwesomeException ' ;
26
27
$ exclude [] = '\ParseError ' ;
27
28
$ exclude [] = '\Symfony\Component\HttpKernel\Exception\HttpExceptionInterface ' ;
You can’t perform that action at this time.
0 commit comments