| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public static function string(string $constant): string |
||
| 12 | { |
||
| 13 | $string_constant = static::STRING_ARRAY_CONSTANT_NAME; |
||
| 14 | |||
| 15 | if (array_key_exists($constant, constant(get_called_class() . "::{$string_constant}"))) { |
||
| 16 | return constant(get_called_class() . "::{$string_constant}")[$constant]; |
||
| 17 | } |
||
| 18 | |||
| 19 | return ''; |
||
| 20 | } |
||
| 22 |