| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | 6 | protected function merge(array $local, array $translated, array $excluded, array $extra_local, array $extra_translated): array |
|
| 27 | { |
||
| 28 | 6 | $main = $this->sortAndMerge($local, $excluded, $translated); |
|
| 29 | 6 | $extra = $this->sortAndMerge($extra_local, $translated); |
|
| 30 | |||
| 31 | 6 | return Arr::merge($main, $extra); |
|
| 32 | } |
||
| 39 |