Completed
Push — master ( 6f1d0c...c423df )
by Park Jong-Hun
02:36
created
core/Application.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
         /**
96 96
          * @var ErrorReporter $reporter
97 97
          */
98
-        set_exception_handler(function ($exception) {
98
+        set_exception_handler(function($exception) {
99 99
             foreach ($this->errorReporters as $reporter) {
100 100
                 $reporter->report($exception);
101 101
             }
102 102
         });
103 103
 
104
-        set_error_handler(function ($errno, $errstr, $errfile, $errline, array $errcontext) {
104
+        set_error_handler(function($errno, $errstr, $errfile, $errline, array $errcontext) {
105 105
             throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
106 106
         });
107 107
     }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     private function buildErrorReporter($reporterName)
122 122
     {
123 123
         $namespace = $this->errorReporterConfig['namespace'];
124
-        $class = $namespace. '\\' . $reporterName;
124
+        $class = $namespace . '\\' . $reporterName;
125 125
 
126 126
         $setting = $this->errorReporterConfig[$reporterName];
127 127
 
Please login to merge, or discard this patch.