| Conditions | 4 |
| Paths | 3 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 4.0466 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 3 | public static function get(string $key, $default = null) |
|
| 26 | { |
||
| 27 | 3 | $key = sprintf('%s.%s', static::CONFIG_NAMESPACE, $key); |
|
| 28 | 3 | if (static::$config !== null) { |
|
| 29 | 1 | return static::$config->get($key, $default); |
|
| 30 | } |
||
| 31 | 2 | if (!function_exists('config') || !function_exists('app')) { |
|
| 32 | 2 | return $default; |
|
| 33 | } |
||
| 34 | return config($key, $default); |
||
| 35 | } |
||
| 36 | |||
| 45 |