Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class EnvironmentManifest extends Enum |
||
|
|||
17 | { |
||
18 | /** |
||
19 | * @inheritdoc |
||
20 | * @noinspection PhpMissingParentCallCommonInspection |
||
21 | */ |
||
22 | 1 | protected static function overrideValues(): array |
|
23 | { |
||
24 | return [ |
||
25 | 1 | 'development' => 'https://manifiesto.cfdiquadrum.com.mx:8008/', |
|
26 | 'production' => 'https://manifiesto.cfdiquadrum.com.mx/', |
||
27 | ]; |
||
30 |