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