Passed
Branch master (230c64)
by PHPinnacle
03:55 queued 01:41
created
src/Dispatcher.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     {
40 40
         $this->handlers[$signal] = $handler;
41 41
 
42
-        $this->processor->interrupt($signal, function (...$arguments) use ($signal) {
42
+        $this->processor->interrupt($signal, function(...$arguments) use ($signal) {
43 43
             return $this->dispatch($signal, ...$arguments);
44 44
         });
45 45
     }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             $signal = \get_class($signal);
56 56
         }
57 57
 
58
-        $handler = $this->handlers[$signal] ?? static function () use ($signal) {
58
+        $handler = $this->handlers[$signal] ?? static function() use ($signal) {
59 59
             throw new Exception\UnknownSignal($signal);
60 60
         };
61 61
 
Please login to merge, or discard this patch.
src/Contract/Dispatcher.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\Contract;
14 14
 
Please login to merge, or discard this patch.
src/Contract/Processor.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\Contract;
14 14
 
Please login to merge, or discard this patch.