Passed
Push — master ( be839c...32e3dc )
by Alec
02:58 queued 13s
created
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.
src/Spinner/Core/Contract/ISpinner.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
 use AlecRabbit\Spinner\Core\Widget\Contract\IWidgetContext;
14 14
 
15 15
 interface ISpinner extends IObserver,
16
-                           ISubject,
17
-                           IHasInterval,
18
-                           IHasFrame
16
+                            ISubject,
17
+                            IHasInterval,
18
+                            IHasFrame
19 19
 {
20 20
     public function add(IWidget $element): IWidgetContext;
21 21
 
Please login to merge, or discard this patch.
src/Spinner/Core/Widget/Contract/IWidget.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 block discarded – undo
10 10
 use AlecRabbit\Spinner\Contract\ISubject;
11 11
 
12 12
 interface IWidget extends IObserver,
13
-                          ISubject,
14
-                          IHasInterval,
15
-                          IHasFrame,
16
-                          IHasWidgetContext
13
+                            ISubject,
14
+                            IHasInterval,
15
+                            IHasFrame,
16
+                            IHasWidgetContext
17 17
 {
18 18
     public function add(IWidget $widget): IWidgetContext;
19 19
 
Please login to merge, or discard this patch.