@@ -223,9 +223,9 @@ |
||
| 223 | 223 | */ |
| 224 | 224 | protected function parseParameters(array &$configuration) |
| 225 | 225 | { |
| 226 | - array_walk_recursive($configuration, function (&$item) { |
|
| 226 | + array_walk_recursive($configuration, function(&$item) { |
|
| 227 | 227 | if (is_string($item)) { |
| 228 | - $item = preg_replace_callback('/%([0-9A-Za-z._-]+)%/', function ($matches) { |
|
| 228 | + $item = preg_replace_callback('/%([0-9A-Za-z._-]+)%/', function($matches) { |
|
| 229 | 229 | return isset($this->parameters[$matches[1]]) ? $this->parameters[$matches[1]] : null; |
| 230 | 230 | }, $item); |
| 231 | 231 | } |