@@ -10,7 +10,7 @@ |
||
| 10 | 10 | |
| 11 | 11 | protected function container(string $class, array $parameters = []) |
| 12 | 12 | { |
| 13 | - if (! isset(static::$containers[$class])) { |
|
| 13 | + if ( ! isset(static::$containers[$class])) { |
|
| 14 | 14 | static::$containers[$class] = Container::getInstance()->make($class, $parameters); |
| 15 | 15 | } |
| 16 | 16 | |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | |
| 14 | 14 | protected function delete(): bool |
| 15 | 15 | { |
| 16 | - if (! IlluminateFile::exists($this->targetPath())) { |
|
| 16 | + if ( ! IlluminateFile::exists($this->targetPath())) { |
|
| 17 | 17 | return true; |
| 18 | 18 | } |
| 19 | 19 | |