@@ -59,7 +59,7 @@ discard block |
||
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 |
||
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 | } |