@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | public function __construct() |
27 | 27 | { |
28 | - if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) { |
|
28 | + if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) { |
|
29 | 29 | throw new \Exception('The ext-simplexml extension is not installed, but is required to generate RSS feeds.'); |
30 | 30 | } |
31 | 31 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | public function generate(): static |
39 | 39 | { |
40 | - Route::all()->each(function ($route) { |
|
40 | + Route::all()->each(function($route) { |
|
41 | 41 | $this->addRoute($route); |
42 | 42 | }); |
43 | 43 |
@@ -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 |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | { |
38 | 38 | $actionTime = microtime(true); |
39 | 39 | |
40 | - if (! $this->runPreflightCheck()) { |
|
40 | + if (!$this->runPreflightCheck()) { |
|
41 | 41 | return 1; |
42 | 42 | } |
43 | 43 | |
@@ -50,17 +50,17 @@ discard block |
||
50 | 50 | |
51 | 51 | protected function runPreflightCheck(): bool |
52 | 52 | { |
53 | - if (! Features::sitemap()) { |
|
53 | + if (!Features::sitemap()) { |
|
54 | 54 | $this->error('Cannot generate sitemap.xml, please check your configuration.'); |
55 | 55 | |
56 | - if (! Hyde::hasSiteUrl()) { |
|
56 | + if (!Hyde::hasSiteUrl()) { |
|
57 | 57 | $this->warn('Hint: You don\'t have a site URL configured. Check config/hyde.php'); |
58 | 58 | } |
59 | 59 | if (config('site.generate_sitemap', true) !== true) { |
60 | 60 | $this->warn('Hint: You have disabled sitemap generation in config/hyde.php'); |
61 | 61 | $this->line(' > You can enable sitemap generation by setting <info>`site.generate_sitemap`</> to <info>`true`</>'); |
62 | 62 | } |
63 | - if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) { |
|
63 | + if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) { |
|
64 | 64 | $this->warn('Hint: You don\'t have the <info>`simplexml`</> extension installed. Check your PHP installation.'); |
65 | 65 | } |
66 | 66 |