| Conditions | 4 |
| Paths | 3 |
| Total Lines | 15 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 47 | public function validate(): bool |
||
| 48 | { |
||
| 49 | if ($this->wikiText === '' || $this->wikiText === '0') { |
||
| 50 | $this->log->warning("Empty wikitext..."); |
||
| 51 | |||
| 52 | return false; |
||
| 53 | } |
||
| 54 | if ($this->wikiText === $this->oldWikiText) { |
||
| 55 | $this->log->debug("Rien à changer..."); |
||
| 56 | $this->db->skipArticle($this->title); |
||
| 57 | |||
| 58 | return false; |
||
| 59 | } |
||
| 60 | |||
| 61 | return true; |
||
| 62 | } |
||
| 63 | } |