| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public static function oneOf(iterable $names): string |
||
| 34 | { |
||
| 35 | $result = \implode(', ', $names instanceof \Traversable ? \iterator_to_array($names) : $names); |
||
| 36 | |||
| 37 | if (($position = \strrpos($result, ', ')) !== false) { |
||
| 38 | return \substr_replace($result, ' or ', $position, 2); |
||
| 39 | } |
||
| 40 | |||
| 41 | return $result; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |