@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | $this->displaySelections($creator); |
36 | 36 | |
37 | - if (! $this->confirm('Do you wish to continue?', true)) { |
|
37 | + if (!$this->confirm('Do you wish to continue?', true)) { |
|
38 | 38 | $this->info('Aborting.'); |
39 | 39 | |
40 | 40 | return 130; |
@@ -53,7 +53,7 @@ |
||
53 | 53 | |
54 | 54 | public function generate(): static |
55 | 55 | { |
56 | - Route::all()->each(function (Route $route): void { |
|
56 | + Route::all()->each(function(Route $route): void { |
|
57 | 57 | $this->addRoute($route); |
58 | 58 | }); |
59 | 59 |
@@ -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 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | public function line(string $message = ''): self |
22 | 22 | { |
23 | - return $this->write($message . PHP_EOL); |
|
23 | + return $this->write($message.PHP_EOL); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | public function newline(int $count = 1): self |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | protected function ansi(string $string, string $color): string |
56 | 56 | { |
57 | - return "\033[" . $color . 'm' . $string . "\033[0m"; |
|
57 | + return "\033[".$color.'m'.$string."\033[0m"; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | protected function black(string $string): string |
@@ -42,6 +42,6 @@ |
||
42 | 42 | */ |
43 | 43 | public function has(string $key): bool |
44 | 44 | { |
45 | - return ! blank($this->data($key)); |
|
45 | + return !blank($this->data($key)); |
|
46 | 46 | } |
47 | 47 | } |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | /** @return $this */ |
19 | 19 | public function generate(): static |
20 | 20 | { |
21 | - Router::getRoutes(DocumentationPage::class)->each(function (Route $route): void { |
|
21 | + Router::getRoutes(DocumentationPage::class)->each(function(Route $route): void { |
|
22 | 22 | $this->items->put($route->getRouteKey(), NavItem::fromRoute($route)); |
23 | 23 | }); |
24 | 24 | |
@@ -32,14 +32,14 @@ discard block |
||
32 | 32 | |
33 | 33 | public function getGroups(): array |
34 | 34 | { |
35 | - return $this->items->map(function (NavItem $item): string { |
|
35 | + return $this->items->map(function(NavItem $item): string { |
|
36 | 36 | return $item->getGroup(); |
37 | 37 | })->unique()->toArray(); |
38 | 38 | } |
39 | 39 | |
40 | 40 | public function getItemsInGroup(?string $group): Collection |
41 | 41 | { |
42 | - return $this->items->filter(function (NavItem $item) use ($group): bool { |
|
42 | + return $this->items->filter(function(NavItem $item) use ($group) : bool { |
|
43 | 43 | return ($item->getGroup() === $group) || ($item->getGroup() === Str::slug($group)); |
44 | 44 | })->sortBy('navigation.priority')->values(); |
45 | 45 | } |
@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | /** @return $this */ |
31 | 31 | public function generate(): static |
32 | 32 | { |
33 | - Router::each(function (Route $route): void { |
|
33 | + Router::each(function(Route $route): void { |
|
34 | 34 | $this->items->put($route->getRouteKey(), NavItem::fromRoute($route)); |
35 | 35 | }); |
36 | 36 | |
37 | - collect(config('hyde.navigation.custom', []))->each(function (NavItem $item): void { |
|
37 | + collect(config('hyde.navigation.custom', []))->each(function(NavItem $item): void { |
|
38 | 38 | $this->items->push($item); |
39 | 39 | }); |
40 | 40 | |
@@ -60,14 +60,14 @@ discard block |
||
60 | 60 | |
61 | 61 | protected function filterHiddenItems(): Collection |
62 | 62 | { |
63 | - return $this->items->reject(function (NavItem $item): bool { |
|
63 | + return $this->items->reject(function(NavItem $item): bool { |
|
64 | 64 | return $this->shouldItemBeHidden($item); |
65 | 65 | })->values(); |
66 | 66 | } |
67 | 67 | |
68 | 68 | protected function filterDuplicateItems(): Collection |
69 | 69 | { |
70 | - return $this->items->unique(function (NavItem $item): string { |
|
70 | + return $this->items->unique(function(NavItem $item): string { |
|
71 | 71 | return $item->label; |
72 | 72 | }); |
73 | 73 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | public const NAVIGATION_SCHEMA = [ |
14 | 14 | 'label' => 'string', |
15 | 15 | 'group' => 'string', // Category is also supported |
16 | - 'hidden' => 'bool', // Visible is also supported (but obviously invert the value) |
|
17 | - 'priority' => 'int', // Order is also supported |
|
16 | + 'hidden' => 'bool', // Visible is also supported (but obviously invert the value) |
|
17 | + 'priority' => 'int', // Order is also supported |
|
18 | 18 | ]; |
19 | 19 | } |