| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class GoogleRequestValidator implements CompleteValidatorInterface |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var OuvrageTemplate |
||
| 21 | */ |
||
| 22 | protected $ouvrage; |
||
| 23 | /** |
||
| 24 | * @var OuvrageTemplate|null |
||
| 25 | */ |
||
| 26 | protected $bnfOuvrage; |
||
| 27 | |||
| 28 | public function __construct(OuvrageTemplate $ouvrage, ?OuvrageTemplate $bnfOuvrage) |
||
| 29 | { |
||
| 30 | $this->ouvrage = $ouvrage; |
||
| 31 | $this->bnfOuvrage = $bnfOuvrage; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function validate(): bool |
||
| 41 | ); |
||
| 42 | } |
||
| 43 | } |