Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class KeyChildsExist implements KeyChildsExistInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var KeysInterface |
||
19 | */ |
||
20 | private $keysOperation; |
||
21 | |||
22 | 1 | public function __construct(KeysInterface $keysOperation) |
|
23 | { |
||
24 | 1 | $this->keysOperation = $keysOperation; |
|
25 | 1 | } |
|
26 | |||
27 | 1 | public function execute($key, array $array): bool |
|
30 | } |
||
31 | } |
||
32 |