Completed
Push — master ( 6a1952...4296cb )
by Fabrice
02:35
created
src/Flows/FlowStatus.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,6 @@
 block discarded – undo
100 100
 
101 101
     /**
102 102
      * Return the Flow status
103
-
104 103
      * @return string The flow status
105 104
      */
106 105
     public function getStatus()
Please login to merge, or discard this patch.
src/Flows/FlowInterruptAbstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
      */
95 95
     public function interruptFlow($interruptType, InterrupterInterface $flowInterrupt = null)
96 96
     {
97
-        $node  = isset($this->nodes[$this->nodeIdx]) ? $this->nodes[$this->nodeIdx] : null;
97
+        $node = isset($this->nodes[$this->nodeIdx]) ? $this->nodes[$this->nodeIdx] : null;
98 98
         switch ($interruptType) {
99 99
             case InterrupterInterface::TYPE_CONTINUE:
100 100
                 $this->continue = true;
Please login to merge, or discard this patch.