Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | trait Join |
||
12 | { |
||
13 | /** |
||
14 | * Join array elements with a string. |
||
15 | * |
||
16 | * @param string $glue |
||
17 | * |
||
18 | * @return string returns a string containing a string representation of all the array elements in the same order, |
||
19 | * with the glue string between each element |
||
20 | */ |
||
21 | 1 | public function join(string $glue = ''): string |
|
26 |