| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class DiffKey implements DiffKeyInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var KeysWithValueInterface |
||
| 19 | */ |
||
| 20 | private $keysWithValueOperation; |
||
| 21 | |||
| 22 | 1 | public function __construct(KeysWithValueInterface $keysWithValueOperation) |
|
| 23 | { |
||
| 24 | 1 | $this->keysWithValueOperation = $keysWithValueOperation; |
|
| 25 | 1 | } |
|
| 26 | |||
| 27 | 2 | public function execute(... $arrays): array |
|
| 30 | } |
||
| 31 | |||
| 32 | 2 | private function convertArrayKeysToKeyValueArray(array $array): array |
|
| 37 |