@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function mediaLink(string $destination, bool $validate = false): string |
83 | 83 | { |
84 | - if ($validate && ! file_exists($sourcePath = "{$this->kernel->getMediaDirectory()}/$destination")) { |
|
84 | + if ($validate && !file_exists($sourcePath = "{$this->kernel->getMediaDirectory()}/$destination")) { |
|
85 | 85 | throw new FileNotFoundException($sourcePath); |
86 | 86 | } |
87 | 87 | |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | */ |
118 | 118 | public function hasSiteUrl(): bool |
119 | 119 | { |
120 | - return ! blank(config('hyde.url')); |
|
120 | + return !blank(config('hyde.url')); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |