CodeceptionTestType::initializeMembers()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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