@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * file that was distributed with this source code. |
9 | 9 | */ |
10 | 10 | |
11 | -declare(strict_types = 1); |
|
11 | +declare(strict_types=1); |
|
12 | 12 | |
13 | 13 | namespace PHPinnacle\Ensign; |
14 | 14 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | public function __construct(Executor $executor = null) |
40 | 40 | { |
41 | 41 | $this->executor = $executor ?: new Executor\SimpleExecutor; |
42 | - $this->resolver = function (string $interrupt, array $arguments) { |
|
42 | + $this->resolver = function(string $interrupt, array $arguments) { |
|
43 | 43 | if (!isset($this->interruptions[$interrupt])) { |
44 | 44 | throw new Exception\UnknownInterrupt($interrupt); |
45 | 45 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | { |
70 | 70 | $deferred = new Deferred; |
71 | 71 | |
72 | - Amp\Loop::defer(function () use ($deferred, $handler, $arguments) { |
|
72 | + Amp\Loop::defer(function() use ($deferred, $handler, $arguments) { |
|
73 | 73 | try { |
74 | 74 | $result = $this->executor->execute($handler, $arguments); |
75 | 75 |