Completed
Push — master ( 565401...ee3df5 )
by Ivannis Suárez
02:53
created
Tests/Units/Promise/DeferredInterfaceTestCase.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
             ->then()
104 104
                 ->delegateCall($onRejected)
105 105
                     ->withArguments($reason)
106
-                     ->once()
106
+                        ->once()
107 107
         ;
108 108
 
109 109
         $this->invalidActionTest($deferred);
Please login to merge, or discard this patch.
Tests/Units/Promise/PromisesTests.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
             ->when($deferred->resolve(0))
92 92
             ->then()
93 93
                 ->boolean($all->state()->equals(State::FULFILLED()))
94
-                  ->isTrue()
94
+                    ->isTrue()
95 95
         ;
96 96
 
97 97
         $this
Please login to merge, or discard this patch.
Tests/Units/Promise/PromiseInterfaceTestCase.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,8 +179,8 @@
 block discarded – undo
179 179
                 ->delegateCall($onFulfilledThen)
180 180
                     ->never()
181 181
                 ->delegateCall($onRejectedThen)
182
-                     ->withArguments($e)
183
-                     ->once();
182
+                        ->withArguments($e)
183
+                        ->once();
184 184
     }
185 185
 
186 186
     /**
Please login to merge, or discard this patch.