Conditions | 4 |
Paths | 5 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.25 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | 2 | public function render($value = null): string |
|
28 | { |
||
29 | 2 | if (null === $value) { |
|
30 | 2 | return ''; |
|
31 | } |
||
32 | |||
33 | 2 | if ($value instanceof Collection) { |
|
34 | $value = $value->toArray(); |
||
35 | } |
||
36 | |||
37 | 2 | if ($value instanceof Iterator) { |
|
38 | $value = iterator_to_array($value); |
||
39 | } |
||
40 | |||
41 | 2 | return implode($this->options['glue'], $value); |
|
42 | } |
||
44 |