CodeceptionTestType   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A initializeMembers() 0 6 1
1
<?php
2
3
4
namespace SmartWeb\ModuleTesting\Generator\Test;
5
6
use Eloquent\Enumeration\AbstractMultiton;
7
8
/**
9
 * Class CodeceptionTestType
10
 *
11
 * @method static static test()
12
 * @method static static cest()
13
 * @method static static cept()
14
 *
15
 * @package SmartWeb\ModuleTesting\Generator\Test
16
 */
17
final class CodeceptionTestType extends AbstractMultiton
18
{
19
    
20
    protected static function initializeMembers()
21
    {
22
        new static('test');
23
        new static('cest');
24
        new static('cept');
25
    }
26
}
27