Passed
Push — master ( 3a2ed0...151619 )
by PHPinnacle
06:13
created
src/SignalDispatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     {
60 60
         $this->handlers[$signal] = $handler;
61 61
 
62
-        $this->processor->interrupt($signal, function (...$arguments) use ($signal) {
62
+        $this->processor->interrupt($signal, function(...$arguments) use ($signal) {
63 63
             return $this->dispatch($signal, ...$arguments);
64 64
         });
65 65
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     private function error(\Exception $exception): callable
109 109
     {
110
-        return function () use ($exception) {
110
+        return function() use ($exception) {
111 111
             throw $exception;
112 112
         };
113 113
     }
Please login to merge, or discard this patch.