Conditions | 3 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
33 | public function update(\SplSubject $stateMachine) |
||
34 | 1 | { |
|
35 | 1 | if ($stateMachine instanceof StatemachineInterface && $stateMachine->getCurrentState()->hasEvent($this->eventName)) { |
|
36 | 1 | $stateMachine->triggerEvent($this->eventName, $this->getStateMachineContext($stateMachine)); |
|
37 | 1 | } |
|
38 | 1 | } |
|
39 | 1 | ||
54 |