@@ -54,9 +54,9 @@ |
||
| 54 | 54 | |
| 55 | 55 | public static function handleVariables(string $key, string $value, Dotenv $dotenv): string |
| 56 | 56 | { |
| 57 | - $result = preg_replace_callback( |
|
| 57 | + $result = preg_replace_callback( |
|
| 58 | 58 | '/(\${(.+?)})/', |
| 59 | - function (array $matches) use ($dotenv){ |
|
| 59 | + function(array $matches) use ($dotenv){ |
|
| 60 | 60 | /** @var string[] $matches */ |
| 61 | 61 | return $dotenv->getEnvArray()[$matches[2]] ?? ''; |
| 62 | 62 | }, |