Passed
Push — master ( 7a5dd1...cfa4be )
by Javier
03:16
created
src/StateMachine.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         }
40 40
     }
41 41
 
42
-	public function to(){
42
+    public function to(){
43 43
         // TODO: pendig of implementation
44 44
         /*
45 45
         if( $this->smb == null )
@@ -61,10 +61,10 @@  discard block
 block discarded – undo
61 61
     }
62 62
 
63 63
     public function addTransition($currentState, $currentEvent, $nextState,
64
-                                  /*\Closure|array*/ $execAction = null,
65
-                                  \Closure $execGuard = null,
66
-                                  \Closure $execBefore = null,
67
-                                  \Closure $execAfter = null)
64
+                                    /*\Closure|array*/ $execAction = null,
65
+                                    \Closure $execGuard = null,
66
+                                    \Closure $execBefore = null,
67
+                                    \Closure $execAfter = null)
68 68
     {
69 69
         $this->argumentIsValidOrFail($currentState);
70 70
         $this->argumentIsValidOrFail($currentEvent);
Please login to merge, or discard this patch.