@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | /** @param class-string<\Hyde\Pages\Concerns\HydePage> $class */ |
57 | 57 | protected function formatSourcePath(string $path, string $class): string |
58 | 58 | { |
59 | - if (! $class::isDiscoverable()) { |
|
59 | + if (!$class::isDiscoverable()) { |
|
60 | 60 | return '<fg=yellow>dynamic</>'; |
61 | 61 | } |
62 | 62 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | |
66 | 66 | protected function formatOutputPath(string $path): string |
67 | 67 | { |
68 | - if (! file_exists(Hyde::sitePath($path))) { |
|
68 | + if (!file_exists(Hyde::sitePath($path))) { |
|
69 | 69 | return "_site/$path"; |
70 | 70 | } |
71 | 71 |