@@ -139,7 +139,7 @@ |
||
139 | 139 | { |
140 | 140 | if (Str::contains($match[1], '@%')) { |
141 | 141 | $match[0] = isset($match[3]) ? $match[1].$match[3] : $match[1]; |
142 | - } elseif (method_exists($this, $method = 'compile'.ucfirst($match[1]))) { |
|
142 | + } elseif (method_exists($this, $method = 'compile'.ucfirst($match[1]))) { |
|
143 | 143 | $match[0] = $this->$method(Arr::get($match, 3)); |
144 | 144 | } |
145 | 145 |