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