| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 37 | public function validate(): bool |
||
| 38 | { |
||
| 39 | foreach ($this->citationCollection as $citation) { |
||
| 40 | if (!$this->isCitationCompleted($citation)) { |
||
| 41 | $this->log->warning("SKIP : Amélioration incomplet de l'article. sleep 10min"); |
||
| 42 | sleep(600); // todo move/event |
||
| 43 | |||
| 44 | return false; |
||
| 45 | } |
||
| 46 | } |
||
| 47 | return true; |
||
| 48 | } |
||
| 62 | } |