@@ -98,7 +98,7 @@ |
||
| 98 | 98 | /** @inheritDoc */ |
| 99 | 99 | public static function getFromSource(string $sourceFilePath): static |
| 100 | 100 | { |
| 101 | - return RoutingService::getInstance()->getRoutes()->first(function (RouteContract $route) use ($sourceFilePath) { |
|
| 101 | + return RoutingService::getInstance()->getRoutes()->first(function(RouteContract $route) use ($sourceFilePath) { |
|
| 102 | 102 | return $route->getSourceFilePath() === $sourceFilePath; |
| 103 | 103 | }) ?? throw new RouteNotFoundException($sourceFilePath); |
| 104 | 104 | } |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | $route, |
| 52 | 52 | $route->getSourceModel()->navigationMenuTitle(), |
| 53 | 53 | $route->getSourceModel()->navigationMenuPriority(), |
| 54 | - ! $route->getSourceModel()->showInNavigation() |
|
| 54 | + !$route->getSourceModel()->showInNavigation() |
|
| 55 | 55 | ); |
| 56 | 56 | } |
| 57 | 57 | |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | $current = Hyde::currentRoute()->getSourceModel(); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - if (! isset($this->route)) { |
|
| 99 | + if (!isset($this->route)) { |
|
| 100 | 100 | return ($current->getRoute()->getRouteKey() === $this->href) |
| 101 | 101 | || ($current->getRoute()->getRouteKey().'.html' === $this->href); |
| 102 | 102 | } |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | |
| 74 | 74 | public function failed(): bool |
| 75 | 75 | { |
| 76 | - return ! $this->passed; |
|
| 76 | + return !$this->passed; |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | public function statusCode(): int |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | $filepath = $model::getSourceDirectory().'/'. |
| 24 | 24 | $slug.$model::getFileExtension(); |
| 25 | 25 | |
| 26 | - if (! file_exists(Hyde::path($filepath))) { |
|
| 26 | + if (!file_exists(Hyde::path($filepath))) { |
|
| 27 | 27 | throw new FileNotFoundException($filepath); |
| 28 | 28 | } |
| 29 | 29 | } |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | public function needsDirectory(string $directory): void |
| 16 | 16 | { |
| 17 | - if (! file_exists($directory)) { |
|
| 17 | + if (!file_exists($directory)) { |
|
| 18 | 18 | mkdir($directory, recursive: true); |
| 19 | 19 | } |
| 20 | 20 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | protected function bootApplication(): void |
| 30 | 30 | { |
| 31 | - if (! isset($this->laravel)) { |
|
| 31 | + if (!isset($this->laravel)) { |
|
| 32 | 32 | $this->createApplication(); |
| 33 | 33 | } |
| 34 | 34 | |
@@ -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 | |
@@ -277,7 +277,7 @@ discard block |
||
| 277 | 277 | <?php |
| 278 | 278 | $documentation = DiscoveryService::getDocumentationPageList(); |
| 279 | 279 | $posts = DiscoveryService::getMarkdownPostList(); |
| 280 | - ?> |
|
| 280 | + ?> |
|
| 281 | 281 | <h3 class="h5">Your Pages</h3> |
| 282 | 282 | <table class="table"> |
| 283 | 283 | <thead class="table-secondary"> |
@@ -379,7 +379,7 @@ discard block |
||
| 379 | 379 | return file_get_contents($this->filepath); |
| 380 | 380 | } |
| 381 | 381 | }; |
| 382 | - ?> |
|
| 382 | + ?> |
|
| 383 | 383 | |
| 384 | 384 | <section class="col-12 col-xl-10 col-xxl-8"> |
| 385 | 385 | <h3 class="h6 my-3">Showing file <code><?= e($editor->contentpath) ?></code></h3> |
@@ -456,10 +456,10 @@ discard block |
||
| 456 | 456 | |
| 457 | 457 | <?php |
| 458 | 458 | } catch (\Throwable $th) { |
| 459 | - echo '<h1>Error</h1>'; |
|
| 460 | - echo '<p>An error occurred while processing your request.</p>'; |
|
| 461 | - echo '<pre><code>'.$th->getMessage().'</code></pre>'; |
|
| 462 | - echo '<p>Extra information:</p>'; |
|
| 463 | - echo '<pre><code>'.$th->getTraceAsString().print_r($th, true).'</code></pre>'; |
|
| 464 | - exit($th->getCode()); |
|
| 465 | - } |
|
| 459 | + echo '<h1>Error</h1>'; |
|
| 460 | + echo '<p>An error occurred while processing your request.</p>'; |
|
| 461 | + echo '<pre><code>'.$th->getMessage().'</code></pre>'; |
|
| 462 | + echo '<p>Extra information:</p>'; |
|
| 463 | + echo '<pre><code>'.$th->getTraceAsString().print_r($th, true).'</code></pre>'; |
|
| 464 | + exit($th->getCode()); |
|
| 465 | + } |
|
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | use Hyde\Framework\HydeKernel; |
| 5 | 5 | use Illuminate\Support\Collection; |
| 6 | 6 | |
| 7 | -if (! function_exists('hyde')) { |
|
| 7 | +if (!function_exists('hyde')) { |
|
| 8 | 8 | /** |
| 9 | 9 | * Get the available HydeKernel instance. |
| 10 | 10 | * |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | } |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | -if (! function_exists('unslash')) { |
|
| 19 | +if (!function_exists('unslash')) { |
|
| 20 | 20 | /** |
| 21 | 21 | * Remove trailing slashes from the start and end of a string. |
| 22 | 22 | * |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | -if (! function_exists('array_map_unique')) { |
|
| 32 | +if (!function_exists('array_map_unique')) { |
|
| 33 | 33 | /** |
| 34 | 34 | * Map a callback over an array and remove duplicates. |
| 35 | 35 | * |