Passed
Push — master ( be839c...32e3dc )
by Alec
02:58 queued 13s
created
src/Spinner/Core/A/ADriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     public function wrap(Closure $callback): Closure
53 53
     {
54 54
         return
55
-            function (mixed ...$args) use ($callback): void {
55
+            function(mixed ...$args) use ($callback): void {
56 56
                 $this->erase();
57 57
                 $callback(...$args);
58 58
                 $this->render();
Please login to merge, or discard this patch.
src/Spinner/Core/Factory/ContainerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     {
36 36
         return
37 37
             new Container(
38
-                spawnerCreatorCb: static function (ContainerInterface $container): IServiceSpawner {
38
+                spawnerCreatorCb: static function(ContainerInterface $container): IServiceSpawner {
39 39
                     return new ServiceSpawner($container);
40 40
                 },
41 41
                 definitions: $this->registry->getDefinitions(),
Please login to merge, or discard this patch.
src/Spinner/Core/Contract/Loop/A/ALoopAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
         return (bool)(($error['type'] ?? 0)
21 21
             &
22
-            (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR));
22
+            (E_ERROR|E_CORE_ERROR|E_COMPILE_ERROR|E_USER_ERROR|E_RECOVERABLE_ERROR));
23 23
     }
24 24
 
25 25
     abstract public function onSignal(int $signal, Closure $closure): void;
Please login to merge, or discard this patch.
src/Spinner/Core/Pattern/StylePattern/Rainbow.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
     public function __construct(?int $interval = null, bool $reversed = false)
17 17
     {
18 18
         parent::__construct(
19
-            interval: $interval,
20
-            reversed: $reversed,
19
+            interval : $interval,
20
+            reversed : $reversed,
21 21
         );
22 22
     }
23 23
 
Please login to merge, or discard this patch.
src/Spinner/Core/Pattern/CharPattern/Snake.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
         bool $reversed = false
23 23
     ) {
24 24
         parent::__construct(
25
-            interval: $interval ?? self::INTERVAL,
26
-            reversed: $reversed
25
+            interval : $interval ?? self::INTERVAL,
26
+            reversed : $reversed
27 27
         );
28 28
     }
29 29
 
Please login to merge, or discard this patch.
src/Spinner/Core/LoopSetup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     {
48 48
         yield from [
49 49
             // @codeCoverageIgnoreStart
50
-            SIGINT => function () use ($driver): void {
50
+            SIGINT => function() use ($driver): void {
51 51
                 $driver->interrupt(PHP_EOL . 'SIGINT' . PHP_EOL); // todo: test
52 52
                 $this->loop->stop();
53 53
             },
Please login to merge, or discard this patch.