@@ -193,7 +193,7 @@ |
||
193 | 193 | { |
194 | 194 | if (false === empty($this->ignoredExceptions)) { |
195 | 195 | $ignoredExceptions = $this->ignoredExceptions; |
196 | - $notifierInstance->addFilter(function ($notice) use ($ignoredExceptions) { |
|
196 | + $notifierInstance->addFilter(function($notice) use ($ignoredExceptions) { |
|
197 | 197 | foreach ($ignoredExceptions as $exceptionClass) { |
198 | 198 | if ($notice['errors'][0]['type'] === $exceptionClass) { |
199 | 199 | return null; |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | ->booleanNode('global_exception_instance') |
40 | 40 | ->beforeNormalization() |
41 | 41 | ->ifString() |
42 | - ->then(function ($v) { |
|
42 | + ->then(function($v) { |
|
43 | 43 | return in_array($v, array('1', 'true', 'on')); |
44 | 44 | }) |
45 | 45 | ->end() |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | ->booleanNode('global_error_and_exception_handler') |
49 | 49 | ->beforeNormalization() |
50 | 50 | ->ifString() |
51 | - ->then(function ($v) { |
|
51 | + ->then(function($v) { |
|
52 | 52 | return in_array($v, array('1', 'true', 'on')); |
53 | 53 | }) |
54 | 54 | ->end() |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | ->booleanNode('listener_enabled') |
74 | 74 | ->beforeNormalization() |
75 | 75 | ->ifString() |
76 | - ->then(function ($v) { |
|
76 | + ->then(function($v) { |
|
77 | 77 | return in_array($v, array('1', 'true', 'on')); |
78 | 78 | }) |
79 | 79 | ->end() |