Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 0 |
1 | <?php |
||
22 | 1 | public function value(): string |
|
23 | { |
||
24 | 1 | $items = \iterator_to_array($this->list->all()); |
|
25 | 1 | shuffle($items); |
|
26 | 1 | $result = reset($items); |
|
27 | 1 | if (!is_string($result)) { |
|
28 | throw new \RuntimeException('Can not fetch random string from the list'); |
||
29 | } |
||
30 | 1 | return $result; |
|
31 | } |
||
32 | } |
||
33 |