Completed
Push — master ( 69223d...e437bb )
by Petre
13:16
created
src/Builder/NotifierBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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()
Please login to merge, or discard this patch.