@@ -43,7 +43,7 @@ |
||
43 | 43 | |
44 | 44 | protected static function validated(mixed $value, string $type, string $key): mixed |
45 | 45 | { |
46 | - if (! ("is_$type")($value)) { |
|
46 | + if (!("is_$type")($value)) { |
|
47 | 47 | throw new TypeError(sprintf('%s(): Config value %s must be of type %s, %s given', __METHOD__, $key, $type, gettype($value))); |
48 | 48 | } |
49 | 49 |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | return $this->__call('compile', []); |
95 | 95 | } |
96 | 96 | |
97 | - if ($this->getBladeView() && ! $this->getContents()) { |
|
97 | + if ($this->getBladeView() && !$this->getContents()) { |
|
98 | 98 | if (str_ends_with($this->getBladeView(), '.blade.php')) { |
99 | 99 | // If the view key is for a Blade file path, we'll use the anonymous view compiler to compile it. |
100 | 100 | // This allows you to use any arbitrary file, without needing to register its namespace or directory. |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | */ |
125 | 125 | public function __call(string $method, array $parameters): mixed |
126 | 126 | { |
127 | - if (! isset($this->macros[$method])) { |
|
127 | + if (!isset($this->macros[$method])) { |
|
128 | 128 | throw new BadMethodCallException(sprintf( |
129 | 129 | 'Method %s::%s does not exist.', static::class, $method |
130 | 130 | )); |