tao996
Results
1
comments of
tao996
now I make a class extend the StateMachine; ``` class StateMachineEx extends StateMachine { /** * @param $state * @throws \Finite\Exception\TransitionException */ public function setState($state) { $this->currentState = $this->getState($state); }...