Passed
Pull Request — master (#5)
by Steve
02:03
created
src/Steps/LambdaStep.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,14 +25,14 @@
 block discarded – undo
25 25
     {
26 26
         $this->executeHandler = $execute;
27 27
         if ($compensate === null) {
28
-            $compensate = function () {
28
+            $compensate = function() {
29 29
             };
30 30
         }
31 31
         $this->compensateHandler = $compensate;
32 32
         if ($name === null) {
33 33
             $name = "anonymous lambda";
34 34
         }
35
-        $this->name =$name;
35
+        $this->name = $name;
36 36
     }
37 37
 
38 38
     public function execute($state)
Please login to merge, or discard this patch.