Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
PhpReservedKeyword | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
getDefaultConfigurationPath | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
instance | |
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 PhpReservedKeyword extends AbstractReservedWord |
8 | { |
9 | public static function getDefaultConfigurationPath(): string |
10 | { |
11 | return __DIR__.'/../resources/config/php_reserved_keywords.yml'; |
12 | } |
13 | |
14 | public static function instance(?string $filename = null): self |
15 | { |
16 | return parent::instance($filename); |
17 | } |
18 | } |