Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3.0176 |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
15 | 8 | public function selectTransition(\Traversable $transitions) |
|
16 | { |
||
17 | 8 | $transitions = iterator_to_array($transitions); |
|
18 | |||
19 | 8 | switch (count($transitions)) { |
|
20 | case 0: |
||
21 | 3 | return; |
|
22 | 1 | case 1: |
|
23 | 7 | return reset($transitions); |
|
24 | default: |
||
25 | 1 | throw new \RuntimeException('More than one transition is active!'); |
|
26 | } |
||
27 | } |
||
28 | } |
||
29 |