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 | 2 | public function update(\SplSubject $stateMachine) |
|
34 | { |
||
35 | 2 | if ($stateMachine instanceof StatemachineInterface && $stateMachine->getCurrentState()->hasEvent($this->eventName)) { |
|
36 | 2 | $stateMachine->triggerEvent($this->eventName, $this->getStateMachineContext($stateMachine)); |
|
37 | 2 | } |
|
38 | 2 | } |
|
39 | |||
54 |