| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait Arrayable |
||
| 10 | { |
||
| 11 | protected function combine(array ...$arrays): array |
||
| 12 | { |
||
| 13 | return Arr::combine($arrays); |
||
| 14 | } |
||
| 15 | |||
| 16 | protected function merge(array ...$arrays): array |
||
| 17 | { |
||
| 18 | return Arr::merge(...$arrays); |
||
| 19 | } |
||
| 20 | |||
| 21 | protected function sort(array $array): array |
||
| 24 | } |
||
| 25 | |||
| 26 | protected function sortAndMerge(array ...$arrays): array |
||
| 31 | } |
||
| 32 | } |
||
| 33 |