Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
37 | 16 | public function __construct(string $field, array $values, LoggerInterface $logger, bool $exclude = true) |
|
38 | { |
||
39 | 16 | $this->field = explode('.', $field); |
|
40 | 16 | $this->values = $values; |
|
41 | 16 | $this->logger = $logger; |
|
42 | 16 | $this->exclude = $exclude; |
|
43 | 16 | } |
|
44 | |||
55 |