Passed
Push — master ( 42303c...a9e041 )
by Dispositif
02:43
created

ArticleOptimizer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 6
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A doTasks() 0 4 1
1
<?php
2
/*
3
 * This file is part of dispositif/wikibot application (@github)
4
 * 2019-2023 © Philippe M./Irønie  <[email protected]>
5
 * For the full copyright and MIT license information, view the license file.
6
 */
7
8
declare(strict_types=1);
9
10
11
namespace App\Domain\WikiOptimizer;
12
13
14
use App\Domain\AbstractTemplateOptimizer;
15
16
class ArticleOptimizer extends AbstractTemplateOptimizer
17
{
18
    public function doTasks(): self
19
    {
20
        // Implement doTasks() method.
21
        return $this;
22
    }
23
}
24