@@ -1,6 +1,6 @@  | 
                                                    ||
| 1 | 1 | <?php  | 
                                                        
| 2 | 2 | |
| 3 | - /*  | 
                                                        |
| 3 | + /*  | 
                                                        |
| 4 | 4 | |--------------------------------------------------------------------------  | 
                                                        
| 5 | 5 | | Torchlight  | 
                                                        
| 6 | 6 | |--------------------------------------------------------------------------  | 
                                                        
@@ -34,7 +34,7 @@  | 
                                                    ||
| 34 | 34 | |
| 35 | 35 | public function canSaveFile(string $path): void  | 
                                                        
| 36 | 36 |      { | 
                                                        
| 37 | -        if (file_exists($path) && ! $this->force) { | 
                                                        |
| 37 | +        if (file_exists($path) && !$this->force) { | 
                                                        |
| 38 | 38 | throw new FileConflictException($path);  | 
                                                        
| 39 | 39 | }  | 
                                                        
| 40 | 40 | }  | 
                                                        
@@ -43,7 +43,7 @@  | 
                                                    ||
| 43 | 43 | |
| 44 | 44 | public function execute(): bool|int  | 
                                                        
| 45 | 45 |      { | 
                                                        
| 46 | -        if (! array_key_exists($this->selected, static::$options)) { | 
                                                        |
| 46 | +        if (!array_key_exists($this->selected, static::$options)) { | 
                                                        |
| 47 | 47 | return 404;  | 
                                                        
| 48 | 48 | }  | 
                                                        
| 49 | 49 | |
@@ -41,7 +41,7 @@  | 
                                                    ||
| 41 | 41 | |
| 42 | 42 | public function execute(): bool|int  | 
                                                        
| 43 | 43 |      { | 
                                                        
| 44 | -        if (! array_key_exists($this->selected, static::$homePages)) { | 
                                                        |
| 44 | +        if (!array_key_exists($this->selected, static::$homePages)) { | 
                                                        |
| 45 | 45 | return 404;  | 
                                                        
| 46 | 46 | }  | 
                                                        
| 47 | 47 | |
@@ -64,7 +64,7 @@  | 
                                                    ||
| 64 | 64 | |
| 65 | 65 | protected function fetchLocalImageInformation(): int  | 
                                                        
| 66 | 66 |      { | 
                                                        
| 67 | -        if (! file_exists($this->image->getSource())) { | 
                                                        |
| 67 | +        if (!file_exists($this->image->getSource())) { | 
                                                        |
| 68 | 68 |              $this->write(' > <comment>Warning:</comment> Could not find image file at '.$this->image->getSource().'!'); | 
                                                        
| 69 | 69 |              $this->write('         <fg=gray>   Using default content length of 0. '.'</>'); | 
                                                        
| 70 | 70 | |
@@ -25,7 +25,7 @@  | 
                                                    ||
| 25 | 25 |      { | 
                                                        
| 26 | 26 |          if (Features::hasDataCollections()) { | 
                                                        
| 27 | 27 | // Create the _data directory if it doesn't exist  | 
                                                        
| 28 | -            if (! is_dir(Hyde::path('_data'))) { | 
                                                        |
| 28 | +            if (!is_dir(Hyde::path('_data'))) { | 
                                                        |
| 29 | 29 |                  mkdir(Hyde::path('_data')); | 
                                                        
| 30 | 30 | }  | 
                                                        
| 31 | 31 | }  | 
                                                        
@@ -107,7 +107,7 @@  | 
                                                    ||
| 107 | 107 |      { | 
                                                        
| 108 | 108 |          if (! Features::enabled(Features::torchlight())) { | 
                                                        
| 109 | 109 |              return $result->skip('Check a Torchlight API token is set') | 
                                                        
| 110 | -               ->withTip('Torchlight is an API for code syntax highlighting. You can enable it in the Hyde config.'); | 
                                                        |
| 110 | +                ->withTip('Torchlight is an API for code syntax highlighting. You can enable it in the Hyde config.'); | 
                                                        |
| 111 | 111 | }  | 
                                                        
| 112 | 112 | |
| 113 | 113 |          if (config('torchlight.token') !== null) { | 
                                                        
@@ -62,7 +62,7 @@ discard block  | 
                                                    ||
| 62 | 62 | |
| 63 | 63 | public function check_documentation_site_has_an_index_page(Result $result): Result  | 
                                                        
| 64 | 64 |      { | 
                                                        
| 65 | -        if (! Features::hasDocumentationPages()) { | 
                                                        |
| 65 | +        if (!Features::hasDocumentationPages()) { | 
                                                        |
| 66 | 66 |              return $result->skip('The documentation page feature is disabled in config'); | 
                                                        
| 67 | 67 | }  | 
                                                        
| 68 | 68 | |
@@ -105,7 +105,7 @@ discard block  | 
                                                    ||
| 105 | 105 | |
| 106 | 106 | public function check_a_torchlight_api_token_is_set(Result $result): Result  | 
                                                        
| 107 | 107 |      { | 
                                                        
| 108 | -        if (! Features::enabled(Features::torchlight())) { | 
                                                        |
| 108 | +        if (!Features::enabled(Features::torchlight())) { | 
                                                        |
| 109 | 109 |              return $result->skip('Check a Torchlight API token is set') | 
                                                        
| 110 | 110 |                 ->withTip('Torchlight is an API for code syntax highlighting. You can enable it in the Hyde config.'); | 
                                                        
| 111 | 111 | }  | 
                                                        
@@ -75,7 +75,7 @@ discard block  | 
                                                    ||
| 75 | 75 | public function getRoutesForModel(string $pageClass): Collection  | 
                                                        
| 76 | 76 |      { | 
                                                        
| 77 | 77 | // Return a new filtered collection with only routes that are for the given page class.  | 
                                                        
| 78 | -        return $this->routes->filter(function (RouteContract $route) use ($pageClass) { | 
                                                        |
| 78 | +        return $this->routes->filter(function(RouteContract $route) use ($pageClass) { | 
                                                        |
| 79 | 79 | return $route->getSourceModel() instanceof $pageClass;  | 
                                                        
| 80 | 80 | });  | 
                                                        
| 81 | 81 | }  | 
                                                        
@@ -125,7 +125,7 @@ discard block  | 
                                                    ||
| 125 | 125 | protected function discoverPageRoutes(string $pageClass): void  | 
                                                        
| 126 | 126 |      { | 
                                                        
| 127 | 127 | /** @var PageContract $pageClass */  | 
                                                        
| 128 | -        $pageClass::all()->each(function ($page) { | 
                                                        |
| 128 | +        $pageClass::all()->each(function($page) { | 
                                                        |
| 129 | 129 | $this->discover($page);  | 
                                                        
| 130 | 130 | });  | 
                                                        
| 131 | 131 | }  | 
                                                        
@@ -97,7 +97,7 @@ discard block  | 
                                                    ||
| 97 | 97 | */  | 
                                                        
| 98 | 98 | public function validate(): void  | 
                                                        
| 99 | 99 |      { | 
                                                        
| 100 | - if (! (  | 
                                                        |
| 100 | + if (!(  | 
                                                        |
| 101 | 101 | str_starts_with($this->path, Hyde::pathToRelative(Hyde::getDocumentationPagePath())) ||  | 
                                                        
| 102 | 102 | str_starts_with($this->path, Hyde::pathToRelative(Hyde::getMarkdownPostPath())) ||  | 
                                                        
| 103 | 103 | str_starts_with($this->path, Hyde::pathToRelative(Hyde::getBladePagePath())) ||  | 
                                                        
@@ -106,7 +106,7 @@ discard block  | 
                                                    ||
| 106 | 106 |              throw new Exception("Path [$this->path] is not in a valid source directory.", 400); | 
                                                        
| 107 | 107 | }  | 
                                                        
| 108 | 108 | |
| 109 | -        if (! file_exists(Hyde::path($this->path))) { | 
                                                        |
| 109 | +        if (!file_exists(Hyde::path($this->path))) { | 
                                                        |
| 110 | 110 |              throw new Exception("File [$this->path] not found.", 404); | 
                                                        
| 111 | 111 | }  | 
                                                        
| 112 | 112 | }  |