ModuleMakerFactory   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A create() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: thalesmartins
5
 * Date: 03/12/2018
6
 * Time: 15:28
7
 */
8
9
namespace Saci\Console\Infrastructure\Domain\Services;
10
11
12
use Symfony\Component\Filesystem\Filesystem;
13
14
class ModuleMakerFactory
15
{
16
17 2
    public static function create()
18
    {
19 2
        return new ModuleMaker(new Filesystem());
20
    }
21
}