| Total Complexity | 11 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class MergeWithKeysAsReverseMerge implements BeforeMergeModifierInterface, DataModifierInterface |
||
| 10 | { |
||
| 11 | private array $array = []; |
||
| 12 | |||
| 13 | public function beforeMerge(array $array, array $allArrays): array |
||
| 14 | { |
||
| 15 | $this->array = $array; |
||
| 16 | return $array; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function apply(array $data): array |
||
| 22 | } |
||
| 23 | |||
| 24 | private function applyOrder(array $data, array $array): array |
||
| 49 | } |
||
| 50 | } |
||
| 51 |