@@ -25,7 +25,7 @@ |
||
| 25 | 25 | { |
| 26 | 26 | parent::setUp(); |
| 27 | 27 | |
| 28 | - if (! static::$booted) { |
|
| 28 | + if (!static::$booted) { |
|
| 29 | 29 | $this->resetApplication(); |
| 30 | 30 | |
| 31 | 31 | static::$booted = true; |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | { |
| 29 | 29 | $this->selected = $this->argument('homepage') ?? $this->promptForHomepage(); |
| 30 | 30 | |
| 31 | - if (! $this->canExistingIndexFileBeOverwritten()) { |
|
| 31 | + if (!$this->canExistingIndexFileBeOverwritten()) { |
|
| 32 | 32 | $this->error('A modified index.blade.php file already exists. Use --force to overwrite.'); |
| 33 | 33 | |
| 34 | 34 | return 409; |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | protected function canExistingIndexFileBeOverwritten(): bool |
| 83 | 83 | { |
| 84 | - if (! file_exists(Hyde::getBladePagePath('index.blade.php')) || $this->option('force')) { |
|
| 84 | + if (!file_exists(Hyde::getBladePagePath('index.blade.php')) || $this->option('force')) { |
|
| 85 | 85 | return true; |
| 86 | 86 | } |
| 87 | 87 | |