Test Failed
Push — master ( 2bd514...7a7922 )
by Song
09:30
created
src/Command.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      */
133 133
     public function handleArguments()
134 134
     {
135
-        $serverOptions = array_map(function ($option) {
135
+        $serverOptions = array_map(function($option) {
136 136
             return "$option:";
137 137
         }, Server::$validServerOptions);
138 138
 
@@ -334,17 +334,17 @@  discard block
 block discarded – undo
334 334
     {
335 335
         error_reporting(-1);
336 336
 
337
-        set_error_handler(function ($level, $message, $file = '', $line = 0) {
337
+        set_error_handler(function($level, $message, $file = '', $line = 0) {
338 338
             if (error_reporting() & $level) {
339 339
                 throw new ErrorException($message, 0, $level, $file, $line);
340 340
             }
341 341
         });
342 342
 
343
-        set_exception_handler(function ($e) {
343
+        set_exception_handler(function($e) {
344 344
             $this->handleUncaughtException($e);
345 345
         });
346 346
 
347
-        register_shutdown_function(function () {
347
+        register_shutdown_function(function() {
348 348
             $this->handleShutdown();
349 349
         });
350 350
     }
Please login to merge, or discard this patch.