Passed
Push — master ( de3d61...be839c )
by Alec
13:42 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/Contract/IDriver.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 use Closure;
13 13
 
14 14
 interface IDriver extends IObserver,
15
-                          ISubject,
16
-                          IRenderable,
17
-                          IHasInterval
15
+                            ISubject,
16
+                            IRenderable,
17
+                            IHasInterval
18 18
 {
19 19
     /**
20 20
      * Adds spinner to the driver.
Please login to merge, or discard this patch.