@@ -22,7 +22,7 @@ |
||
| 22 | 22 | echo "Short version: $shortVersion\n"; |
| 23 | 23 | $composerJson = json_decode(file_get_contents(__DIR__.'./../../packages/hyde/composer.json'), true); |
| 24 | 24 | $composerJson['require']['hyde/framework'] = "^0.$shortVersion"; |
| 25 | -file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)); |
|
| 25 | +file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES)); |
|
| 26 | 26 | |
| 27 | 27 | echo "Transforming upcoming release notes... \n"; |
| 28 | 28 | |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | 'file-viewer' => 'File Viewer', |
| 72 | 72 | ]; |
| 73 | 73 | |
| 74 | - if (! isset($routes[$page])) { |
|
| 74 | + if (!isset($routes[$page])) { |
|
| 75 | 75 | header('HTTP/1.1 404 Not Found'); |
| 76 | 76 | $page = '404'; |
| 77 | 77 | } |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | $class = $this->type; |
| 368 | 368 | $filename = $this->filename; |
| 369 | 369 | $filepath = $class::$sourceDirectory.'/'.$filename.$class::$fileExtension; |
| 370 | - if (! file_exists(Hyde::path($filepath))) { |
|
| 370 | + if (!file_exists(Hyde::path($filepath))) { |
|
| 371 | 371 | throw new FileNotFoundException($filepath); |
| 372 | 372 | } |
| 373 | 373 | |