@@ -89,11 +89,11 @@ |
||
| 89 | 89 | Hyde::pathToRelative(Hyde::getDocumentationPagePath()), |
| 90 | 90 | ]; |
| 91 | 91 | |
| 92 | - if (! in_array($directory, $directories)) { |
|
| 92 | + if (!in_array($directory, $directories)) { |
|
| 93 | 93 | throw new Exception("Path [$this->path] is not in a valid source directory.", 400); |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - if (! file_exists(Hyde::path($this->path))) { |
|
| 96 | + if (!file_exists(Hyde::path($this->path))) { |
|
| 97 | 97 | throw new Exception("File [$this->path] not found.", 404); |
| 98 | 98 | } |
| 99 | 99 | } |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | return $this->__call('compile', []); |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - if (! $this->getContents() && $this->getBladeView()) { |
|
| 94 | + if (!$this->getContents() && $this->getBladeView()) { |
|
| 95 | 95 | if (str_ends_with($this->view, '.blade.php')) { |
| 96 | 96 | return AnonymousViewCompiler::call($this->getBladeView(), $this->matter->toArray()); |
| 97 | 97 | } |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | */ |
| 116 | 116 | public function __call(string $method, array $parameters): mixed |
| 117 | 117 | { |
| 118 | - if (! isset($this->macros[$method])) { |
|
| 118 | + if (!isset($this->macros[$method])) { |
|
| 119 | 119 | throw new BadMethodCallException(sprintf( |
| 120 | 120 | 'Method %s::%s does not exist.', static::class, $method |
| 121 | 121 | )); |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | namespace { |
| 6 | 6 | use Hyde\Foundation\HydeKernel; |
| 7 | 7 | |
| 8 | - if (! function_exists('hyde')) { |
|
| 8 | + if (!function_exists('hyde')) { |
|
| 9 | 9 | /** |
| 10 | 10 | * Get the available HydeKernel instance. |
| 11 | 11 | */ |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | } |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | - if (! function_exists('unslash')) { |
|
| 18 | + if (!function_exists('unslash')) { |
|
| 19 | 19 | /** |
| 20 | 20 | * Remove trailing slashes from the start and end of a string. |
| 21 | 21 | */ |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | use Illuminate\Contracts\Support\Arrayable; |
| 32 | 32 | use Symfony\Component\Yaml\Yaml; |
| 33 | 33 | |
| 34 | - if (! function_exists('\Hyde\hyde')) { |
|
| 34 | + if (!function_exists('\Hyde\hyde')) { |
|
| 35 | 35 | /** |
| 36 | 36 | * Get the available HydeKernel instance. |
| 37 | 37 | */ |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - if (! function_exists('\Hyde\unslash')) { |
|
| 44 | + if (!function_exists('\Hyde\unslash')) { |
|
| 45 | 45 | /** |
| 46 | 46 | * Remove trailing slashes from the start and end of a string. |
| 47 | 47 | */ |
@@ -51,63 +51,63 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - if (! function_exists('\Hyde\make_title')) { |
|
| 54 | + if (!function_exists('\Hyde\make_title')) { |
|
| 55 | 55 | function make_title(string $value): string |
| 56 | 56 | { |
| 57 | 57 | return hyde()->makeTitle($value); |
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - if (! function_exists('\Hyde\normalize_newlines')) { |
|
| 61 | + if (!function_exists('\Hyde\normalize_newlines')) { |
|
| 62 | 62 | function normalize_newlines(string $string): string |
| 63 | 63 | { |
| 64 | 64 | return hyde()->normalizeNewlines($string); |
| 65 | 65 | } |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - if (! function_exists('\Hyde\strip_newlines')) { |
|
| 68 | + if (!function_exists('\Hyde\strip_newlines')) { |
|
| 69 | 69 | function strip_newlines(string $string): string |
| 70 | 70 | { |
| 71 | 71 | return hyde()->stripNewlines($string); |
| 72 | 72 | } |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - if (! function_exists('\Hyde\trim_slashes')) { |
|
| 75 | + if (!function_exists('\Hyde\trim_slashes')) { |
|
| 76 | 76 | function trim_slashes(string $string): string |
| 77 | 77 | { |
| 78 | 78 | return hyde()->trimSlashes($string); |
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - if (! function_exists('\Hyde\evaluate_arrayable')) { |
|
| 82 | + if (!function_exists('\Hyde\evaluate_arrayable')) { |
|
| 83 | 83 | function evaluate_arrayable(array|Arrayable $array): array |
| 84 | 84 | { |
| 85 | 85 | return $array instanceof Arrayable ? $array->toArray() : $array; |
| 86 | 86 | } |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - if (! function_exists('\Hyde\yaml_encode')) { |
|
| 89 | + if (!function_exists('\Hyde\yaml_encode')) { |
|
| 90 | 90 | function yaml_encode(mixed $input, int $inline = 2, int $indent = 4, int $flags = 0): string |
| 91 | 91 | { |
| 92 | 92 | return Yaml::dump($input instanceof Arrayable ? $input->toArray() : $input, $inline, $indent, $flags); |
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - if (! function_exists('\Hyde\yaml_decode')) { |
|
| 96 | + if (!function_exists('\Hyde\yaml_decode')) { |
|
| 97 | 97 | function yaml_decode(string $input, int $flags = 0): mixed |
| 98 | 98 | { |
| 99 | 99 | return Yaml::parse($input, $flags); |
| 100 | 100 | } |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - if (! function_exists('\Hyde\path_join')) { |
|
| 103 | + if (!function_exists('\Hyde\path_join')) { |
|
| 104 | 104 | function path_join(string $directory, string ...$paths): string |
| 105 | 105 | { |
| 106 | 106 | return implode('/', array_merge([$directory], $paths)); |
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - if (! function_exists('\Hyde\normalize_slashes')) { |
|
| 110 | + if (!function_exists('\Hyde\normalize_slashes')) { |
|
| 111 | 111 | function normalize_slashes(string $string): string |
| 112 | 112 | { |
| 113 | 113 | return str_replace('\\', '/', $string); |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | |
| 34 | 34 | public static function enabled(): bool |
| 35 | 35 | { |
| 36 | - return config('docs.create_search_page', true) && ! Hyde::routes()->has(self::routeKey()); |
|
| 36 | + return config('docs.create_search_page', true) && !Hyde::routes()->has(self::routeKey()); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | public static function generate(): string |
@@ -11,13 +11,13 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | define('BASE_PATH', realpath(__DIR__.'/../../../')); |
| 13 | 13 | |
| 14 | -if (BASE_PATH === false || ! file_exists(BASE_PATH.'/hyde')) { |
|
| 14 | +if (BASE_PATH === false || !file_exists(BASE_PATH.'/hyde')) { |
|
| 15 | 15 | throw new InvalidArgumentException('This test suite must be run from the root of the hydephp/develop monorepo.'); |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | ob_start(); |
| 19 | 19 | |
| 20 | -test('handle routes index page', function () { |
|
| 20 | +test('handle routes index page', function() { |
|
| 21 | 21 | putenv('SERVER_DASHBOARD=false'); |
| 22 | 22 | mockRoute(''); |
| 23 | 23 | |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | Filesystem::unlink('_site/index.html'); |
| 37 | 37 | }); |
| 38 | 38 | |
| 39 | -test('handle routes custom pages', function () { |
|
| 39 | +test('handle routes custom pages', function() { |
|
| 40 | 40 | mockRoute('foo'); |
| 41 | 41 | |
| 42 | 42 | Filesystem::put('_pages/foo.md', '# Hello World!'); |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | Filesystem::unlink('_site/foo.html'); |
| 55 | 55 | }); |
| 56 | 56 | |
| 57 | -test('handle routes pages with .html extension', function () { |
|
| 57 | +test('handle routes pages with .html extension', function() { |
|
| 58 | 58 | mockRoute('foo.html'); |
| 59 | 59 | |
| 60 | 60 | Filesystem::put('_pages/foo.md', '# Hello World!'); |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | Filesystem::unlink('_site/foo.html'); |
| 73 | 73 | }); |
| 74 | 74 | |
| 75 | -test('handle routes static assets', function () { |
|
| 75 | +test('handle routes static assets', function() { |
|
| 76 | 76 | mockRoute('media/app.css'); |
| 77 | 77 | |
| 78 | 78 | $kernel = new HttpKernel(); |
@@ -85,14 +85,14 @@ discard block |
||
| 85 | 85 | expect($response->body)->toContain('/*! HydeFront v2.0.0'); |
| 86 | 86 | }); |
| 87 | 87 | |
| 88 | -test('handle throws route not found exception for missing route', function () { |
|
| 88 | +test('handle throws route not found exception for missing route', function() { |
|
| 89 | 89 | mockRoute('missing'); |
| 90 | 90 | |
| 91 | 91 | $kernel = new HttpKernel(); |
| 92 | 92 | $kernel->handle(new Request()); |
| 93 | 93 | })->throws(RouteNotFoundException::class, "Route not found: 'missing'"); |
| 94 | 94 | |
| 95 | -test('handle sends 404 error response for missing asset', function () { |
|
| 95 | +test('handle sends 404 error response for missing asset', function() { |
|
| 96 | 96 | mockRoute('missing.css'); |
| 97 | 97 | |
| 98 | 98 | $kernel = new HttpKernel(); |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | ->and($response->statusMessage)->toBe('Not Found'); |
| 104 | 104 | }); |
| 105 | 105 | |
| 106 | -test('html responses contain the correct headers', function () { |
|
| 106 | +test('html responses contain the correct headers', function() { |
|
| 107 | 107 | mockRoute('foo'); |
| 108 | 108 | |
| 109 | 109 | Filesystem::put('_pages/foo.md', '# Hello World!'); |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | Filesystem::unlink('_site/foo.html'); |
| 124 | 124 | })->skip('Underlying framework does not buffer headers (yet)'); |
| 125 | 125 | |
| 126 | -test('trailing slashes are normalized from route', function () { |
|
| 126 | +test('trailing slashes are normalized from route', function() { |
|
| 127 | 127 | mockRoute('foo/'); |
| 128 | 128 | |
| 129 | 129 | Filesystem::put('_pages/foo.md', '# Hello World!'); |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | Filesystem::unlink('_site/foo.html'); |
| 142 | 142 | }); |
| 143 | 143 | |
| 144 | -test('docs uri path is rerouted to docs/index', function () { |
|
| 144 | +test('docs uri path is rerouted to docs/index', function() { |
|
| 145 | 145 | mockRoute('docs'); |
| 146 | 146 | |
| 147 | 147 | Filesystem::put('_docs/index.md', '# Hello World!'); |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | Filesystem::unlink('_site/docs/index.html'); |
| 160 | 160 | }); |
| 161 | 161 | |
| 162 | -test('docs/search renders search page', function () { |
|
| 162 | +test('docs/search renders search page', function() { |
|
| 163 | 163 | mockRoute('docs/search'); |
| 164 | 164 | |
| 165 | 165 | $kernel = new HttpKernel(); |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | Filesystem::unlink('_site/docs/search.html'); |
| 175 | 175 | }); |
| 176 | 176 | |
| 177 | -test('ping route returns ping response', function () { |
|
| 177 | +test('ping route returns ping response', function() { |
|
| 178 | 178 | mockRoute('ping'); |
| 179 | 179 | |
| 180 | 180 | $kernel = new HttpKernel(); |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | ->and($response->statusMessage)->toBe('OK'); |
| 186 | 186 | }); |
| 187 | 187 | |
| 188 | -test('exception handling', function () { |
|
| 188 | +test('exception handling', function() { |
|
| 189 | 189 | $exception = new Exception('foo'); |
| 190 | 190 | $response = ExceptionHandler::handle($exception); |
| 191 | 191 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | |
| 50 | 50 | public function hasDropdowns(): bool |
| 51 | 51 | { |
| 52 | - if (! $this->dropdownsEnabled()) { |
|
| 52 | + if (!$this->dropdownsEnabled()) { |
|
| 53 | 53 | return false; |
| 54 | 54 | } |
| 55 | 55 | |
@@ -59,18 +59,18 @@ discard block |
||
| 59 | 59 | /** @return array<string, DropdownNavItem> */ |
| 60 | 60 | public function getDropdowns(): array |
| 61 | 61 | { |
| 62 | - if (! $this->dropdownsEnabled()) { |
|
| 62 | + if (!$this->dropdownsEnabled()) { |
|
| 63 | 63 | throw new BadMethodCallException('Dropdowns are not enabled. Enable it by setting `hyde.navigation.subdirectories` to `dropdown`.'); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - return $this->items->filter(function (NavItem $item): bool { |
|
| 66 | + return $this->items->filter(function(NavItem $item): bool { |
|
| 67 | 67 | return $item instanceof DropdownNavItem; |
| 68 | 68 | })->all(); |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | protected static function canBeInDropdown(NavItem $item): bool |
| 72 | 72 | { |
| 73 | - return ($item->getGroup() !== null) && ! in_array($item->route->getPageClass(), [DocumentationPage::class, MarkdownPost::class]); |
|
| 73 | + return ($item->getGroup() !== null) && !in_array($item->route->getPageClass(), [DocumentationPage::class, MarkdownPost::class]); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | protected static function dropdownsEnabled(): bool |
@@ -81,6 +81,6 @@ discard block |
||
| 81 | 81 | protected static function shouldItemBeHidden(NavItem $item): bool |
| 82 | 82 | { |
| 83 | 83 | return parent::shouldItemBeHidden($item) || |
| 84 | - $item->getRoute()?->getPage() instanceof DocumentationPage && ! $item->getRoute()->is(DocumentationPage::homeRouteName()); |
|
| 84 | + $item->getRoute()?->getPage() instanceof DocumentationPage && !$item->getRoute()->is(DocumentationPage::homeRouteName()); |
|
| 85 | 85 | } |
| 86 | 86 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public function getSourceFiles(?string $pageClass = null): self |
| 36 | 36 | { |
| 37 | - return ! $pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass); |
|
| 37 | + return !$pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | { |
| 93 | 93 | // Scan the source directory, and directories therein, for files that match the model's file extension. |
| 94 | 94 | foreach (glob($this->kernel->path($pageClass::sourcePath('{*,**/*}')), GLOB_BRACE) as $filepath) { |
| 95 | - if (! str_starts_with(basename((string) $filepath), '_')) { |
|
| 95 | + if (!str_starts_with(basename((string) $filepath), '_')) { |
|
| 96 | 96 | $this->put($this->kernel->pathToRelative($filepath), SourceFile::make($filepath, $pageClass)); |
| 97 | 97 | } |
| 98 | 98 | } |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | { |
| 39 | 39 | public function getRoutes(?string $pageClass = null): self |
| 40 | 40 | { |
| 41 | - return ! $pageClass ? $this : $this->filter(function (Route $route) use ($pageClass): bool { |
|
| 41 | + return !$pageClass ? $this : $this->filter(function(Route $route) use ($pageClass) : bool { |
|
| 42 | 42 | return $route->getPage() instanceof $pageClass; |
| 43 | 43 | }); |
| 44 | 44 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | |
| 66 | 66 | protected function runDiscovery(): self |
| 67 | 67 | { |
| 68 | - $this->kernel->pages()->each(function (HydePage $page): void { |
|
| 68 | + $this->kernel->pages()->each(function(HydePage $page): void { |
|
| 69 | 69 | $this->discover($page); |
| 70 | 70 | }); |
| 71 | 71 | |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | public function getPages(?string $pageClass = null): self |
| 32 | 32 | { |
| 33 | - return $pageClass ? $this->filter(function (HydePage $page) use ($pageClass): bool { |
|
| 33 | + return $pageClass ? $this->filter(function(HydePage $page) use ($pageClass) : bool { |
|
| 34 | 34 | return $page instanceof $pageClass; |
| 35 | 35 | }) : $this; |
| 36 | 36 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | |
| 73 | 73 | protected function discoverPagesFor(string $pageClass): void |
| 74 | 74 | { |
| 75 | - $this->parsePagesFor($pageClass)->each(function (HydePage $page): void { |
|
| 75 | + $this->parsePagesFor($pageClass)->each(function(HydePage $page): void { |
|
| 76 | 76 | $this->addPage($page); |
| 77 | 77 | }); |
| 78 | 78 | } |