Completed
Push — master ( e631de...9efb49 )
by Park Jong-Hun
02:46
created
core/ErrorReporterRegister.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
         /**
34 34
          * @var ErrorReporter $reporter
35 35
          */
36
-        set_exception_handler(function ($exception) {
36
+        set_exception_handler(function($exception) {
37 37
             foreach ($this->errorReporters as $reporter) {
38 38
                 $reporter->report($exception);
39 39
             }
40 40
         });
41 41
 
42
-        set_error_handler(function ($errno, $errstr, $errfile, $errline, array $errcontext) {
42
+        set_error_handler(function($errno, $errstr, $errfile, $errline, array $errcontext) {
43 43
             throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
44 44
         });
45 45
     }
Please login to merge, or discard this patch.