Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | trait Arrayable |
||
25 | { |
||
26 | 85 | protected function combine(array ...$arrays): array |
|
27 | { |
||
28 | 85 | return Arr::combine(...$arrays); |
|
29 | } |
||
30 | |||
31 | 85 | protected function mergeArray(array ...$arrays): array |
|
32 | { |
||
33 | 85 | return Arr::merge(...$arrays); |
|
34 | } |
||
35 | |||
36 | 85 | protected function sort(array $array): array |
|
39 | } |
||
40 | |||
41 | 85 | protected function sortAndMerge(array ...$arrays): array |
|
46 | } |
||
47 | } |
||
48 |