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

ArticleOptimizer::doTasks()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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