@@ -22,7 +22,7 @@ |
||
| 22 | 22 | /* |
| 23 | 23 | * Enable package auto-discovery. |
| 24 | 24 | */ |
| 25 | - $this->app->singleton(PackageManifest::class, function (): PackageManifest { |
|
| 25 | + $this->app->singleton(PackageManifest::class, function(): PackageManifest { |
|
| 26 | 26 | return new PackageManifest( |
| 27 | 27 | new Filesystem, |
| 28 | 28 | $this->basePath(), |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | |
| 40 | 40 | $this->app->singleton(AssetService::class, AssetService::class); |
| 41 | 41 | |
| 42 | - $this->app->singleton(MarkdownConverter::class, function (): MarkdownConverter { |
|
| 42 | + $this->app->singleton(MarkdownConverter::class, function(): MarkdownConverter { |
|
| 43 | 43 | return new MarkdownConverter(); |
| 44 | 44 | }); |
| 45 | 45 | |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | |
| 53 | 53 | public function processInput(): static |
| 54 | 54 | { |
| 55 | - $this->output = implode("\n", array_map(function (string $line): string { |
|
| 55 | + $this->output = implode("\n", array_map(function(string $line): string { |
|
| 56 | 56 | return $this->expandShortcode($line); |
| 57 | 57 | }, explode("\n", $this->input))); |
| 58 | 58 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | public static function preprocess(string $markdown): string |
| 36 | 36 | { |
| 37 | - return implode("\n", array_map(function (string $line): string { |
|
| 37 | + return implode("\n", array_map(function(string $line): string { |
|
| 38 | 38 | return str_starts_with(strtolower($line), strtolower('[Blade]:')) |
| 39 | 39 | ? '<!-- HYDE'.trim(e($line)).' -->' |
| 40 | 40 | : $line; |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | public function run(): static |
| 56 | 56 | { |
| 57 | - $this->output = implode("\n", array_map(function (string $line): string { |
|
| 57 | + $this->output = implode("\n", array_map(function(string $line): string { |
|
| 58 | 58 | return $this->lineStartsWithDirective($line) |
| 59 | 59 | ? $this->processLine($line) |
| 60 | 60 | : $line; |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | return ''; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - return sprintf(' %s', collect($this->attr)->map(function (string $value, string $key): string { |
|
| 38 | + return sprintf(' %s', collect($this->attr)->map(function(string $value, string $key): string { |
|
| 39 | 39 | return e($key).'="'.e($value).'"'; |
| 40 | 40 | })->implode(' ')); |
| 41 | 41 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | |
| 42 | 42 | public function compileStaticPages(): void |
| 43 | 43 | { |
| 44 | - collect($this->getPageTypes())->each(function (string $pageClass): void { |
|
| 44 | + collect($this->getPageTypes())->each(function(string $pageClass): void { |
|
| 45 | 45 | $this->compilePagesForClass($pageClass); |
| 46 | 46 | }); |
| 47 | 47 | } |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | $this->needsDirectory(Hyde::sitePath('media')); |
| 64 | 64 | |
| 65 | 65 | $this->comment('Transferring Media Assets...'); |
| 66 | - $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function (string $filepath): void { |
|
| 66 | + $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function(string $filepath): void { |
|
| 67 | 67 | $sitePath = Hyde::sitePath('media/'.unslash(Str::after($filepath, Hyde::path('_media')))); |
| 68 | 68 | $this->needsParentDirectory($sitePath); |
| 69 | 69 | copy($filepath, $sitePath); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | $collection = $this->router->getRoutes($pageClass); |
| 83 | 83 | |
| 84 | - $this->withProgressBar($collection, function (Route $route): void { |
|
| 84 | + $this->withProgressBar($collection, function(Route $route): void { |
|
| 85 | 85 | (new StaticPageBuilder($route->getPage()))->__invoke(); |
| 86 | 86 | }); |
| 87 | 87 | |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | protected function isItSafeToCleanOutputDirectory(): bool |
| 97 | 97 | { |
| 98 | - if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
| 98 | + if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
| 99 | 99 | $this->info('Output directory will not be emptied.'); |
| 100 | 100 | |
| 101 | 101 | return false; |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */ |
| 127 | 127 | protected function getPageTypes(): array |
| 128 | 128 | { |
| 129 | - return Hyde::pages()->map(function (HydePage $page): string { |
|
| 129 | + return Hyde::pages()->map(function(HydePage $page): string { |
|
| 130 | 130 | return $page::class; |
| 131 | 131 | })->unique()->values()->toArray(); |
| 132 | 132 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | protected function setSource(string $source): string |
| 23 | 23 | { |
| 24 | - if (! str_starts_with($source, '_media/')) { |
|
| 24 | + if (!str_starts_with($source, '_media/')) { |
|
| 25 | 25 | // Throwing an exception here ensures we have a super predictable state. |
| 26 | 26 | throw new InvalidArgumentException('LocalFeaturedImage source must start with _media/'); |
| 27 | 27 | } |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | |
| 50 | 50 | protected function storageValidatedPath(): string |
| 51 | 51 | { |
| 52 | - if (! file_exists($this->storagePath())) { |
|
| 52 | + if (!file_exists($this->storagePath())) { |
|
| 53 | 53 | throw new FileNotFoundException("Image at $this->source does not exist"); |
| 54 | 54 | } |
| 55 | 55 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | return $this->isInstanceOf(MarkdownPost::class) |
| 94 | 94 | || $this->searchForHiddenInFrontMatter() |
| 95 | 95 | || in_array($this->routeKey, config('hyde.navigation.exclude', ['404'])) |
| 96 | - || ! $this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden'); |
|
| 96 | + || !$this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden'); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | protected function makePriority(): int |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | |
| 195 | 195 | protected function invert(?bool $value): ?bool |
| 196 | 196 | { |
| 197 | - return $value === null ? null : ! $value; |
|
| 197 | + return $value === null ? null : !$value; |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | protected function offset(?int $value, int $offset): ?int |