Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 2 | public function updateState($stateId, callable $updater) |
|
25 | { |
||
26 | 2 | $stateClass = $this->getStateClass($updater); |
|
27 | |||
28 | 1 | $state = call_user_func($updater, $this->loadState($stateClass, $stateId)); |
|
29 | |||
30 | 1 | $key = $stateClass . $stateId; |
|
31 | |||
32 | 1 | $this->states[$key] = $state; |
|
33 | 1 | } |
|
34 | |||
45 | } |