Passed
Push — develop ( 393819...8447c9 )
by Mikaël
74:52 queued 24:50
created

StructArrayReservedMethod   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getDefaultConfigurationPath() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace WsdlToPhp\PackageGenerator\ConfigurationReader;
6
7
final class StructArrayReservedMethod extends AbstractReservedWord
8
{
9
    public static function getDefaultConfigurationPath(): string
10 12
    {
11
        return __DIR__.'/../resources/config/struct_array_reserved_keywords.yml';
12 12
    }
13
}
14