| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | class CitationsNotEmptyValidator implements ValidatorInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var array|null |
||
| 19 | */ |
||
| 20 | protected $pageCitationCollection; |
||
| 21 | protected $log; |
||
| 22 | |||
| 23 | public function __construct(?array $pageCitationCollection, LoggerInterface $logger) |
||
| 27 | } |
||
| 28 | |||
| 29 | public function validate(): bool |
||
| 38 | } |
||
| 39 | } |