Passed
Push — master ( 3d4435...41a0c4 )
by Runner
02:45
created
src/Blueprint.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     protected function addTransition(string $name, $from, string $to, $checker = null): self
121 121
     {
122 122
         $from = (array) $from;
123
-        $fromStates = array_map(function ($state) {
123
+        $fromStates = array_map(function($state) {
124 124
             return $this->getState($state);
125 125
         }, $from);
126 126
         $this->transitions[$name] = new Transition(
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     protected function eventListener($method): Closure
159 159
     {
160
-        return function (Event $event) use ($method) {
160
+        return function(Event $event) use ($method) {
161 161
             return call_user_func([$this, $method], $event->getStateful(), $event->getParameters());
162 162
         };
163 163
     }
Please login to merge, or discard this patch.