Completed
Push — master ( 06b292...adafac )
by Nicolai
02:22
created

UnitTestSettings   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getNamespace() 0 4 1
1
<?php
2
3
4
namespace SmartWeb\ModuleTesting\Codeception\Generator;
5
6
use SmartWeb\ModuleTesting\Codeception\AbstractConfiguration;
7
8
9
class UnitTestSettings extends AbstractConfiguration implements GeneratorSettingsInterface
10
{
11
    
12
    public function getNamespace() : string
13
    {
14
        return $this[self::NAMESPACE];
15
    }
16
    
17
}