Total Complexity | 5 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class MultipleKeysExists implements MultipleKeysExistsInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var KeyExistsInterface |
||
19 | */ |
||
20 | private $keyExistsOperation; |
||
21 | |||
22 | 1 | public function __construct(KeyExistsInterface $keyExistsOperation) |
|
23 | { |
||
24 | 1 | $this->keyExistsOperation = $keyExistsOperation; |
|
25 | 1 | } |
|
26 | |||
27 | 1 | public function execute(array $keys, array $array): bool |
|
40 | } |
||
41 | } |
||
42 |