@@ -7,7 +7,7 @@ |
||
7 | 7 | * file that was distributed with this source code. |
8 | 8 | */ |
9 | 9 | |
10 | -declare(strict_types = 1); |
|
10 | +declare(strict_types=1); |
|
11 | 11 | |
12 | 12 | namespace PHPinnacle\Ensign; |
13 | 13 |
@@ -8,7 +8,7 @@ |
||
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 |
@@ -8,7 +8,7 @@ |
||
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\Exception; |
14 | 14 |
@@ -8,7 +8,7 @@ |
||
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\Exception; |
14 | 14 |
@@ -8,7 +8,7 @@ |
||
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\Exception; |
14 | 14 |
@@ -8,7 +8,7 @@ |
||
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\Exception; |
14 | 14 |
@@ -22,10 +22,10 @@ discard block |
||
22 | 22 | { |
23 | 23 | } |
24 | 24 | |
25 | -Amp\Loop::run(function () { |
|
25 | +Amp\Loop::run(function() { |
|
26 | 26 | $dispatcher = Dispatcher::instance(); |
27 | 27 | $dispatcher |
28 | - ->register(Ping::class, function (Ping $cmd) { |
|
28 | + ->register(Ping::class, function(Ping $cmd) { |
|
29 | 29 | if ($cmd->times > 0) { |
30 | 30 | $cmd->times--; |
31 | 31 | |
@@ -36,12 +36,12 @@ discard block |
||
36 | 36 | yield new Stop(); |
37 | 37 | } |
38 | 38 | }) |
39 | - ->register(Pong::class, function (Pong $cmd) { |
|
39 | + ->register(Pong::class, function(Pong $cmd) { |
|
40 | 40 | echo 'Pong!' . \PHP_EOL; |
41 | 41 | |
42 | 42 | yield new Ping($cmd->times); |
43 | 43 | }) |
44 | - ->register(Stop::class, function () { |
|
44 | + ->register(Stop::class, function() { |
|
45 | 45 | echo 'Stop!' . \PHP_EOL; |
46 | 46 | }) |
47 | 47 | ; |
@@ -5,10 +5,10 @@ |
||
5 | 5 | |
6 | 6 | require __DIR__ . '/../vendor/autoload.php'; |
7 | 7 | |
8 | -Amp\Loop::run(function () { |
|
8 | +Amp\Loop::run(function() { |
|
9 | 9 | $dispatcher = Dispatcher::instance(); |
10 | 10 | $dispatcher |
11 | - ->register('emit', function (string $string, int $num, int $delay = 100) { |
|
11 | + ->register('emit', function(string $string, int $num, int $delay = 100) { |
|
12 | 12 | for ($i = 0; $i < $num; $i++) { |
13 | 13 | echo $string; |
14 | 14 |
@@ -27,10 +27,10 @@ discard block |
||
27 | 27 | } |
28 | 28 | } |
29 | 29 | |
30 | -Amp\Loop::run(function () { |
|
30 | +Amp\Loop::run(function() { |
|
31 | 31 | $dispatcher = Dispatcher::instance(); |
32 | 32 | $dispatcher |
33 | - ->register(SimpleCommand::class, function (SimpleCommand $cmd) { |
|
33 | + ->register(SimpleCommand::class, function(SimpleCommand $cmd) { |
|
34 | 34 | yield new Delayed($cmd->delay); // Just do some heavy calculations |
35 | 35 | yield SimpleEvent::class => new SimpleEvent($cmd->num + $cmd->num); |
36 | 36 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | return $cmd->num; |
41 | 41 | }) |
42 | - ->register(SimpleEvent::class, function (SimpleEvent $event) { |
|
42 | + ->register(SimpleEvent::class, function(SimpleEvent $event) { |
|
43 | 43 | echo \sprintf('Signal dispatched with value: %d at %s' . \PHP_EOL, $event->num, \microtime(true)); |
44 | 44 | }) |
45 | 45 | ; |