@@ -41,12 +41,12 @@ |
||
| 41 | 41 | return $config[$key]; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - if (! str_contains($key, '.')) { |
|
| 44 | + if (!str_contains($key, '.')) { |
|
| 45 | 45 | return $default; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | foreach (explode('.', $key) as $segment) { |
| 49 | - if (! is_array($config) || ! array_key_exists($segment, $config)) { |
|
| 49 | + if (!is_array($config) || !array_key_exists($segment, $config)) { |
|
| 50 | 50 | return $default; |
| 51 | 51 | } |
| 52 | 52 | $config = $config[$segment]; |