Passed
Push — master ( ca9c7f...904700 )
by PHPinnacle
03:16
created
src/Processor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
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
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $token = new Token();
46 46
 
47
-        return new Task(++$this->tasks, new LazyPromise(function () use ($callable, $arguments, $token) {
47
+        return new Task(++$this->tasks, new LazyPromise(function() use ($callable, $arguments, $token) {
48 48
             return $this->adapt($callable(...$arguments), $token);
49 49
         }), $token);
50 50
     }
Please login to merge, or discard this patch.
src/Resolver/EmptyResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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\Resolver;
14 14
 
Please login to merge, or discard this patch.
src/Resolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Exception/EnsignException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
examples/ping-pong.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     ;
Please login to merge, or discard this patch.
examples/concurent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
examples/emit.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     ;
Please login to merge, or discard this patch.
examples/process.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@  discard block
 block discarded – undo
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('spawn', function (callable $process) {
11
+        ->register('spawn', function(callable $process) {
12 12
             static $pid = 1;
13 13
 
14 14
             $gen = $process($pid);
@@ -17,35 +17,35 @@  discard block
 block discarded – undo
17 17
 
18 18
             return $pid++;
19 19
         })
20
-        ->register('send', function (int $pid, string $message, ...$arguments) {
20
+        ->register('send', function(int $pid, string $message, ...$arguments) {
21 21
             $signal = sprintf('%s.%d', $message, $pid);
22 22
 
23 23
             return yield $signal => $arguments;
24 24
         })
25
-        ->register('receive', function (int $pid, string $message, callable $handler) use ($dispatcher) {
25
+        ->register('receive', function(int $pid, string $message, callable $handler) use ($dispatcher) {
26 26
             $signal = sprintf('%s.%d', $message, $pid);
27 27
 
28 28
             $dispatcher->register($signal, $handler);
29 29
         })
30 30
     ;
31 31
 
32
-    $receiver = yield $dispatcher->dispatch('spawn', function (int $pid) {
33
-        yield 'receive' => [$pid, 'ping', function () {
32
+    $receiver = yield $dispatcher->dispatch('spawn', function(int $pid) {
33
+        yield 'receive' => [$pid, 'ping', function() {
34 34
             echo 'Ping!' . \PHP_EOL;
35 35
         }];
36 36
 
37
-        yield 'receive' => [$pid, 'pong', function () {
37
+        yield 'receive' => [$pid, 'pong', function() {
38 38
             echo 'Pong!' . \PHP_EOL;
39 39
         }];
40 40
     });
41 41
 
42
-    $senderOne = $dispatcher->dispatch('spawn', function () use ($receiver) {
42
+    $senderOne = $dispatcher->dispatch('spawn', function() use ($receiver) {
43 43
         yield 'send' => [$receiver, 'ping'];
44 44
         yield new Delayed(500);
45 45
         yield 'send' => [$receiver, 'ping'];
46 46
     });
47 47
 
48
-    $senderTwo = $dispatcher->dispatch('spawn', function () use ($receiver) {
48
+    $senderTwo = $dispatcher->dispatch('spawn', function() use ($receiver) {
49 49
         yield 'send' => [$receiver, 'pong'];
50 50
         yield new Delayed(100);
51 51
         yield 'send' => [$receiver, 'pong'];
Please login to merge, or discard this patch.
examples/timeout.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@
 block discarded – undo
6 6
 
7 7
 require __DIR__ . '/../vendor/autoload.php';
8 8
 
9
-Amp\Loop::run(function () {
9
+Amp\Loop::run(function() {
10 10
     $dispatcher = Dispatcher::instance();
11 11
     $dispatcher
12
-        ->register('endless', function (string $sign) {
12
+        ->register('endless', function(string $sign) {
13 13
             while (true) {
14 14
                 yield new Delayed(100);
15 15
 
Please login to merge, or discard this patch.