Passed
Push — master ( b3f7dd...feb615 )
by Dispositif
06:47
created

ArticleOptimizer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
dl 0
loc 7
rs 10
c 1
b 0
f 0
wmc 1

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/2020 © Philippe M. <[email protected]>
5
 * For the full copyright and MIT license information, please view the license file.
6
 */
7
8
declare(strict_types=1);
9
10
11
namespace App\Domain;
12
13
14
class ArticleOptimizer extends AbstractTemplateOptimizer
15
{
16
17
    public function doTasks()
18
    {
19
        // Implement doTasks() method.
20
        return $this;
21
    }
22
}
23