@@ -33,13 +33,13 @@ |
||
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 | } |