Test Failed
Pull Request — dev (#1952)
by Janko
02:59
created

RefactorRunner   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A refactor() 0 2 1
A __construct() 0 1 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Stu\Component\Refactor;
6
7
use Stu\Orm\Repository\ShipRumpModuleLevelRepositoryInterface;
8
9
final class RefactorRunner
10
{
11
    public function __construct() {}
12
13
    public function refactor(): void
14
    {
15
        // nothing to do
16
    }
17
}
18