Passed
Pull Request — master (#18)
by
unknown
02:29
created
src/Workflow/AbstractWorkflow.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 69
             if ('workflow' === $config['type']) {
70 70
                 $transitions[] = new Transition($name, $transition['from'], $transition['to']);
71 71
             } elseif ('state_machine' === $config['type']) {
72
-                foreach ((array)$transition['from'] as $from) {
73
-                    foreach ((array)$transition['to'] as $to) {
72
+                foreach ((array) $transition['from'] as $from) {
73
+                    foreach ((array) $transition['to'] as $to) {
74 74
                         $transitions[] = new Transition($name, $from, $to);
75 75
                     }
76 76
                 }
Please login to merge, or discard this patch.