| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class Value |
||
| 8 | { |
||
| 9 | // Development - local |
||
| 10 | public const DEVELOPMENT = 'development'; |
||
| 11 | |||
| 12 | // Test, QC |
||
| 13 | public const TESTING = 'testing'; |
||
| 14 | |||
| 15 | // Staging, Model, Pre, Demo |
||
| 16 | // Mirror of production environment |
||
| 17 | public const STAGING = 'staging'; |
||
| 18 | |||
| 19 | // Production, Live |
||
| 20 | public const PRODUCTION = 'production'; |
||
| 21 | |||
| 22 | public static function validate(string $value): bool |
||
| 36 |