| Conditions | 4 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | public function validate(): bool |
||
| 27 | { |
||
| 28 | if ( |
||
| 29 | !$this->pageOuvrage instanceof PageOuvrageDTO |
||
| 30 | || empty($this->pageOuvrage->getRaw()) |
||
| 31 | || !empty($this->pageOuvrage->getOpti()) |
||
| 32 | ) { |
||
| 33 | echo "STOP: NewPageOuvrageToCompleteValidator \n"; |
||
| 34 | |||
| 35 | return false; |
||
| 36 | } |
||
| 37 | |||
| 38 | return true; |
||
| 39 | } |
||
| 40 | } |