Completed
Push — master ( 00f035...fe6838 )
by Ievgen
02:21
created
src/Railway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     protected function findTargetStepIndex($stepName)
37 37
     {
38 38
         $steps = array_column($this->stepsQueue, 'step');
39
-        $names = array_map(function ($step) {
39
+        $names = array_map(function($step) {
40 40
             return $step->name();
41 41
         }, $steps);
42 42
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
             $track = $this->performStep($step, $params, $opt, $track);
159 159
 
160 160
             $failFast = $opt['failFast'] ?? null;
161
-            if($failFast && $track == self::TRACK_FAILURE) {
161
+            if ($failFast && $track == self::TRACK_FAILURE) {
162 162
                  break;
163 163
             }
164 164
         }
Please login to merge, or discard this patch.