@@ -329,7 +329,7 @@ |
||
| 329 | 329 | protected function replaceStringPlaceholders(&$string) |
| 330 | 330 | { |
| 331 | 331 | if (is_string($string)) { |
| 332 | - $string = preg_replace_callback('/%([0-9A-Za-z._-]+)%/', function ($matches) { |
|
| 332 | + $string = preg_replace_callback('/%([0-9A-Za-z._-]+)%/', function($matches) { |
|
| 333 | 333 | return isset($this->parameters[$matches[1]]) ? $this->parameters[$matches[1]] : null; |
| 334 | 334 | }, $string); |
| 335 | 335 | } |