Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function doTasks(): self |
||
25 | { |
||
26 | /** @noinspection PhpParamsInspection */ |
||
27 | $handler = new HandlerComposite([ |
||
28 | new WebSitePeriodiqueHandler($this->optiTemplate, $this->log), |
||
29 | new WebCleanAuthorsHandler($this->optiTemplate), |
||
30 | ]); |
||
31 | $handler->handle(); |
||
32 | |||
33 | return $this; |
||
34 | } |
||
36 |