@@ -44,7 +44,7 @@ |
||
44 | 44 | |
45 | 45 | protected function escape(string $string): string |
46 | 46 | { |
47 | - return htmlspecialchars($string, ENT_XML1 | ENT_COMPAT, 'UTF-8'); |
|
47 | + return htmlspecialchars($string, ENT_XML1|ENT_COMPAT, 'UTF-8'); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | protected function addChild(SimpleXMLElement $element, string $name, string $value): SimpleXMLElement |
@@ -49,7 +49,7 @@ |
||
49 | 49 | // Reject any metadata from the global metadata bag that is already present in the page metadata bag. |
50 | 50 | |
51 | 51 | foreach (['links', 'metadata', 'properties', 'generics'] as $type) { |
52 | - $global->$type = array_filter($global->$type, fn (Element $element): bool => ! in_array($element->uniqueKey(), |
|
52 | + $global->$type = array_filter($global->$type, fn (Element $element): bool => !in_array($element->uniqueKey(), |
|
53 | 53 | array_map(fn (Element $element): string => $element->uniqueKey(), $page->metadata->$type) |
54 | 54 | )); |
55 | 55 | } |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | use Illuminate\Support\Facades\File; |
4 | 4 | |
5 | -if (! function_exists('unlinkIfExists')) { |
|
5 | +if (!function_exists('unlinkIfExists')) { |
|
6 | 6 | function unlinkIfExists(string $filepath): void |
7 | 7 | { |
8 | 8 | if (file_exists($filepath)) { |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | } |
12 | 12 | } |
13 | 13 | |
14 | -if (! function_exists('backupDirectory')) { |
|
14 | +if (!function_exists('backupDirectory')) { |
|
15 | 15 | function backupDirectory(string $directory): void |
16 | 16 | { |
17 | 17 | if (file_exists($directory)) { |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | } |
21 | 21 | } |
22 | 22 | |
23 | -if (! function_exists('restoreDirectory')) { |
|
23 | +if (!function_exists('restoreDirectory')) { |
|
24 | 24 | function restoreDirectory(string $directory): void |
25 | 25 | { |
26 | 26 | if (file_exists($directory.'-bak')) { |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | } |
31 | 31 | } |
32 | 32 | |
33 | -if (! function_exists('deleteDirectory')) { |
|
33 | +if (!function_exists('deleteDirectory')) { |
|
34 | 34 | function deleteDirectory(string $directory): void |
35 | 35 | { |
36 | 36 | if (file_exists($directory)) { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | } |
40 | 40 | } |
41 | 41 | |
42 | -if (! function_exists('unlinkUnlessDefault')) { |
|
42 | +if (!function_exists('unlinkUnlessDefault')) { |
|
43 | 43 | function unlinkUnlessDefault(string $filepath): void |
44 | 44 | { |
45 | 45 | $protected = [ |
@@ -49,13 +49,13 @@ discard block |
||
49 | 49 | '.gitkeep', |
50 | 50 | ]; |
51 | 51 | |
52 | - if (! in_array(basename($filepath), $protected)) { |
|
52 | + if (!in_array(basename($filepath), $protected)) { |
|
53 | 53 | unlink($filepath); |
54 | 54 | } |
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
58 | -if (! function_exists('strip_newlines')) { |
|
58 | +if (!function_exists('strip_newlines')) { |
|
59 | 59 | function strip_newlines(string $string, bool $keepUnixEndings = false): string |
60 | 60 | { |
61 | 61 | if ($keepUnixEndings) { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | } |
67 | 67 | } |
68 | 68 | |
69 | -if (! function_exists('strip_indentation')) { |
|
69 | +if (!function_exists('strip_indentation')) { |
|
70 | 70 | function strip_indentation(string $string, bool $indentUsingSpaces = true, int $indentationLength = 4): string |
71 | 71 | { |
72 | 72 | $indentation = $indentUsingSpaces ? str_repeat(' ', $indentationLength) : "\t"; |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | } |
76 | 76 | } |
77 | 77 | |
78 | -if (! function_exists('strip_newlines_and_indentation')) { |
|
78 | +if (!function_exists('strip_newlines_and_indentation')) { |
|
79 | 79 | function strip_newlines_and_indentation(string $string, bool $indentUsingSpaces = true, int $indentationLength = 4): string |
80 | 80 | { |
81 | 81 | return strip_newlines(strip_indentation($string, $indentUsingSpaces, $indentationLength)); |
@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | /** @return $this */ |
33 | 33 | public function generate(): static |
34 | 34 | { |
35 | - Router::each(function (Route $route) { |
|
35 | + Router::each(function(Route $route) { |
|
36 | 36 | $this->items->push(NavItem::fromRoute($route)); |
37 | 37 | }); |
38 | 38 | |
39 | - collect(config('hyde.navigation.custom', []))->each(function (NavItem $item) { |
|
39 | + collect(config('hyde.navigation.custom', []))->each(function(NavItem $item) { |
|
40 | 40 | $this->items->push($item); |
41 | 41 | }); |
42 | 42 | |
@@ -62,14 +62,14 @@ discard block |
||
62 | 62 | |
63 | 63 | protected function filterHiddenItems(): Collection |
64 | 64 | { |
65 | - return $this->items->reject(function (NavItem $item) { |
|
65 | + return $this->items->reject(function(NavItem $item) { |
|
66 | 66 | return $item->hidden || $this->filterDocumentationPage($item); |
67 | 67 | })->values(); |
68 | 68 | } |
69 | 69 | |
70 | 70 | protected function filterDuplicateItems(): Collection |
71 | 71 | { |
72 | - return $this->items->unique(function (NavItem $item) { |
|
72 | + return $this->items->unique(function(NavItem $item) { |
|
73 | 73 | return $item->resolveLink(); |
74 | 74 | }); |
75 | 75 | } |
@@ -18,8 +18,8 @@ discard block |
||
18 | 18 | /** @return $this */ |
19 | 19 | public function generate(): static |
20 | 20 | { |
21 | - Router::getRoutes(DocumentationPage::class)->each(function (Route $route) { |
|
22 | - $this->items->push(tap(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)), function (NavItem $item) { |
|
21 | + Router::getRoutes(DocumentationPage::class)->each(function(Route $route) { |
|
22 | + $this->items->push(tap(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)), function(NavItem $item) { |
|
23 | 23 | $item->label = $item->route->getPage()->get('navigation.label'); |
24 | 24 | })); |
25 | 25 | }); |
@@ -34,14 +34,14 @@ discard block |
||
34 | 34 | |
35 | 35 | public function getGroups(): array |
36 | 36 | { |
37 | - return $this->items->map(function (NavItem $item) { |
|
37 | + return $this->items->map(function(NavItem $item) { |
|
38 | 38 | return $item->getGroup(); |
39 | 39 | })->unique()->toArray(); |
40 | 40 | } |
41 | 41 | |
42 | 42 | public function getItemsInGroup(?string $group): Collection |
43 | 43 | { |
44 | - return $this->items->filter(function ($item) use ($group) { |
|
44 | + return $this->items->filter(function($item) use ($group) { |
|
45 | 45 | return $item->getGroup() === $group || $item->getGroup() === Str::slug($group); |
46 | 46 | })->sortBy('navigation.priority')->values(); |
47 | 47 | } |
@@ -53,6 +53,6 @@ discard block |
||
53 | 53 | |
54 | 54 | protected function filterDocumentationPage(NavItem $item): bool |
55 | 55 | { |
56 | - return ! parent::filterDocumentationPage($item); |
|
56 | + return !parent::filterDocumentationPage($item); |
|
57 | 57 | } |
58 | 58 | } |
@@ -70,11 +70,11 @@ |
||
70 | 70 | */ |
71 | 71 | public static function getSourceFileListForModel(string $model): array |
72 | 72 | { |
73 | - if (! class_exists($model) || ! is_subclass_of($model, HydePage::class)) { |
|
73 | + if (!class_exists($model) || !is_subclass_of($model, HydePage::class)) { |
|
74 | 74 | throw new UnsupportedPageTypeException($model); |
75 | 75 | } |
76 | 76 | |
77 | - return FileCollection::getSourceFiles($model)->flatten()->map(function (File $file) use ($model): string { |
|
77 | + return FileCollection::getSourceFiles($model)->flatten()->map(function(File $file) use ($model): string { |
|
78 | 78 | return static::pathToIdentifier($model, $file->withoutDirectoryPrefix()); |
79 | 79 | })->toArray(); |
80 | 80 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public function getSourceFiles(?string $pageClass = null): self |
34 | 34 | { |
35 | - return ! $pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass); |
|
35 | + return !$pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | { |
91 | 91 | // Scan the source directory, and directories therein, for files that match the model's file extension. |
92 | 92 | foreach (glob($this->kernel->path($pageClass::sourcePath('{*,**/*}')), GLOB_BRACE) as $filepath) { |
93 | - if (! str_starts_with(basename((string) $filepath), '_')) { |
|
93 | + if (!str_starts_with(basename((string) $filepath), '_')) { |
|
94 | 94 | $this->put($this->kernel->pathToRelative($filepath), File::make($filepath)->belongsTo($pageClass)); |
95 | 95 | } |
96 | 96 | } |
@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | { |
33 | 33 | $selected = $this->parseSelection(); |
34 | 34 | |
35 | - if (! Homepages::exists($selected)) { |
|
35 | + if (!Homepages::exists($selected)) { |
|
36 | 36 | $this->error("Homepage $selected does not exist."); |
37 | 37 | |
38 | 38 | return 404; |
39 | 39 | } |
40 | 40 | |
41 | - if (! $this->canExistingFileBeOverwritten()) { |
|
41 | + if (!$this->canExistingFileBeOverwritten()) { |
|
42 | 42 | $this->error('A modified index.blade.php file already exists. Use --force to overwrite.'); |
43 | 43 | |
44 | 44 | return 409; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | protected function formatPublishableChoices(): array |
71 | 71 | { |
72 | - return $this->getTemplateOptions()->map(function (array $option, string $key): string { |
|
72 | + return $this->getTemplateOptions()->map(function(array $option, string $key): string { |
|
73 | 73 | return "<comment>$key</comment>: {$option['description']}"; |
74 | 74 | })->values()->toArray(); |
75 | 75 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | return true; |
91 | 91 | } |
92 | 92 | |
93 | - if (! file_exists(Hyde::getBladePagePath('index.blade.php'))) { |
|
93 | + if (!file_exists(Hyde::getBladePagePath('index.blade.php'))) { |
|
94 | 94 | return true; |
95 | 95 | } |
96 | 96 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | $path = static::getOutputPath(); |
19 | 19 | |
20 | - if (file_exists($path) && ! $force) { |
|
20 | + if (file_exists($path) && !$force) { |
|
21 | 21 | return false; |
22 | 22 | } |
23 | 23 |