@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | { |
40 | 40 | $this->expression = preg_replace_callback( |
41 | 41 | '/`{[^}]*}`/', |
42 | - function (array $matches): string { |
|
42 | + function(array $matches): string { |
|
43 | 43 | $result = substr($matches[0], 1, strlen($matches[0]) - 2); |
44 | 44 | return sprintf('`(function ($var) %s)($var)`', $result); |
45 | 45 | }, |
@@ -55,11 +55,11 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public function processThis(): self |
57 | 57 | { |
58 | - $expression = preg_replace_callback('/"[^"]"|\'[^\']\'/', function (array $matches) { |
|
58 | + $expression = preg_replace_callback('/"[^"]"|\'[^\']\'/', function(array $matches) { |
|
59 | 59 | return str_replace('$.', '\\$.', $matches[0]); |
60 | 60 | }, $this->expression); |
61 | 61 | $expression = preg_replace('/\$\./', '$this->', $expression); |
62 | - $expression = preg_replace_callback('/"[^"]"|\'[^\']\'/', function (array $matches) { |
|
62 | + $expression = preg_replace_callback('/"[^"]"|\'[^\']\'/', function(array $matches) { |
|
63 | 63 | return str_replace('\\$.', '$.', $matches[0]); |
64 | 64 | }, $expression); |
65 | 65 | $this->expression = $expression; |
@@ -75,11 +75,11 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function resolveClassNames(string $namespace): self |
77 | 77 | { |
78 | - $expression = preg_replace_callback('/"[^"]"|\'[^\']\'/', function (array $matches) { |
|
78 | + $expression = preg_replace_callback('/"[^"]"|\'[^\']\'/', function(array $matches) { |
|
79 | 79 | return str_replace(':', ':\\', $matches[0]); |
80 | 80 | }, $this->expression); |
81 | 81 | $expression = preg_replace('/(?<!:):(?=([a-zA-Z_][a-zA-Z0-9_]*))/', "$namespace\\", $expression); |
82 | - $expression = preg_replace_callback('/"[^"]"|\'[^\']\'/', function (array $matches) { |
|
82 | + $expression = preg_replace_callback('/"[^"]"|\'[^\']\'/', function(array $matches) { |
|
83 | 83 | return str_replace(':\\', ':', $matches[0]); |
84 | 84 | }, $expression); |
85 | 85 | $this->expression = $expression; |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | { |
98 | 98 | $this->expression = preg_replace_callback( |
99 | 99 | '/`([^`]|\\\\`)+((?<!\\\\)`)/', |
100 | - function (array $matches) use($charlist): string { |
|
100 | + function(array $matches) use($charlist): string { |
|
101 | 101 | return addcslashes($matches[0], $charlist); |
102 | 102 | }, |
103 | 103 | $this->expression |