Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | trait TSeparated |
||
15 | { |
||
16 | /** |
||
17 | * @param string $parent |
||
18 | * @param string $separator |
||
19 | * @return int[] |
||
20 | */ |
||
21 | 14 | public function separateInt(string $parent, string $separator = IFile::PARENT_SEPARATOR): array |
|
24 | } |
||
25 | |||
26 | /** |
||
27 | * @param int[] $parent |
||
28 | * @param string $separator |
||
29 | * @return string |
||
30 | */ |
||
31 | 8 | public function compactInt(array $parent, string $separator = IFile::PARENT_SEPARATOR): string |
|
36 |