Passed
Pull Request — master (#92)
by
unknown
04:25 queued 02:11
created
src/Spinner/Core/Widget/Contract/IWidget.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 use AlecRabbit\Spinner\Contract\ISubject;
10 10
 
11 11
 interface IWidget extends ISubject,
12
-                          IHasInterval,
13
-                          IHasFrame
12
+                            IHasInterval,
13
+                            IHasFrame
14 14
 {
15 15
 }
Please login to merge, or discard this patch.
src/Spinner/Core/Widget/Contract/IWidgetComposite.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use AlecRabbit\Spinner\Contract\IObserver;
8 8
 
9 9
 interface IWidgetComposite extends IWidget,
10
-                                   IObserver
10
+                                    IObserver
11 11
 {
12 12
     public function add(IWidgetContext $context): IWidgetContext;
13 13
 
Please login to merge, or discard this patch.
src/Spinner/Core/Widget/Contract/IWidgetContext.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 use AlecRabbit\Spinner\Contract\ISubject;
10 10
 
11 11
 interface IWidgetContext extends IObserver,
12
-                                 ISubject,
13
-                                 IHasNullableInterval
12
+                                    ISubject,
13
+                                    IHasNullableInterval
14 14
 {
15 15
     public function setWidget(?IWidget $widget): void;
16 16
 
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
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 use AlecRabbit\Spinner\Core\Widget\Contract\IWidgetContext;
12 12
 
13 13
 interface ISpinner extends IObserver,
14
-                           ISubject,
15
-                           IHasInterval,
16
-                           IHasFrame
14
+                            ISubject,
15
+                            IHasInterval,
16
+                            IHasFrame
17 17
 {
18 18
     public function add(IWidgetContext $element): IWidgetContext;
19 19
 
Please login to merge, or discard this patch.
src/Spinner/Core/Contract/IDriver.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
13 13
 use Closure;
14 14
 
15 15
 interface IDriver extends IObserver,
16
-                          ISubject,
17
-                          IRenderable,
18
-                          IHasInterval,
19
-                          IInitializable,
20
-                          IFinalizable
16
+                            ISubject,
17
+                            IRenderable,
18
+                            IHasInterval,
19
+                            IInitializable,
20
+                            IFinalizable
21 21
 {
22 22
     /**
23 23
      * Adds spinner to the driver.
Please login to merge, or discard this patch.