@@ -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::getBladePagePath())) || |
| 102 | 102 | str_starts_with($this->path, Hyde::pathToRelative(Hyde::getMarkdownPagePath())) || |
| 103 | 103 | str_starts_with($this->path, Hyde::pathToRelative(Hyde::getMarkdownPostPath())) || |
@@ -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 | } |