Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ServiceReservedMethod | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getDefaultConfigurationPath | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace WsdlToPhp\PackageGenerator\ConfigurationReader; |
6 | |
7 | final class ServiceReservedMethod extends AbstractReservedWord |
8 | { |
9 | public static function getDefaultConfigurationPath(): string |
10 | { |
11 | return __DIR__.'/../resources/config/service_reserved_keywords.yml'; |
12 | } |
13 | } |