Conditions | 2 |
Paths | 2 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | protected function memorizeAndSaveAnalyzedTitle(string $title): void |
||
34 | { |
||
35 | if (!$this->checkAlreadyAnalyzed($title)) { |
||
36 | $this->pastAnalyzed[] = $title; // skip doublon title |
||
1 ignored issue
–
show
|
|||
37 | @file_put_contents(static::ARTICLE_ANALYZED_FILENAME, $title . PHP_EOL, FILE_APPEND); |
||
1 ignored issue
–
show
|
|||
38 | } |
||
45 | } |