@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | return $this->__call('compile', []); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - if (! $this->contents && $this->view) { |
|
| 92 | + if (!$this->contents && $this->view) { |
|
| 93 | 93 | if (str_ends_with($this->view, '.blade.php')) { |
| 94 | 94 | return AnonymousViewCompiler::call($this->view, $this->matter->toArray()); |
| 95 | 95 | } |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | public function __call(string $method, array $parameters): mixed |
| 115 | 115 | { |
| 116 | - if (! isset($this->macros[$method])) { |
|
| 116 | + if (!isset($this->macros[$method])) { |
|
| 117 | 117 | throw new BadMethodCallException(sprintf( |
| 118 | 118 | 'Method %s::%s does not exist.', static::class, $method |
| 119 | 119 | )); |