@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | public function processInput(): static |
51 | 51 | { |
52 | - $this->output = implode("\n", array_map(function ($line) { |
|
52 | + $this->output = implode("\n", array_map(function($line) { |
|
53 | 53 | return $this->expandShortcode($line); |
54 | 54 | }, explode("\n", $this->input))); |
55 | 55 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | public static function preprocess(string $markdown): string |
32 | 32 | { |
33 | - return implode("\n", array_map(function ($line) { |
|
33 | + return implode("\n", array_map(function($line) { |
|
34 | 34 | return str_starts_with(strtolower($line), strtolower('[Blade]:')) |
35 | 35 | ? '<!-- HYDE'.trim(htmlentities($line)).' -->' |
36 | 36 | : $line; |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | public function run(): static |
52 | 52 | { |
53 | - $this->output = implode("\n", array_map(function ($line) { |
|
53 | + $this->output = implode("\n", array_map(function($line) { |
|
54 | 54 | return $this->lineStartsWithDirective($line) |
55 | 55 | ? $this->processLine($line) |
56 | 56 | : $line; |
@@ -31,7 +31,7 @@ |
||
31 | 31 | |
32 | 32 | public function generate(): static |
33 | 33 | { |
34 | - Route::all()->each(function ($route) { |
|
34 | + Route::all()->each(function($route) { |
|
35 | 35 | $this->addRoute($route); |
36 | 36 | }); |
37 | 37 |
@@ -75,11 +75,11 @@ |
||
75 | 75 | */ |
76 | 76 | public function copy(string $from, string $to, bool $force = false): int|bool |
77 | 77 | { |
78 | - if (! file_exists($from)) { |
|
78 | + if (!file_exists($from)) { |
|
79 | 79 | return 404; |
80 | 80 | } |
81 | 81 | |
82 | - if (file_exists($to) && ! $force) { |
|
82 | + if (file_exists($to) && !$force) { |
|
83 | 83 | return 409; |
84 | 84 | } |
85 | 85 |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | /** @return $this */ |
13 | 13 | public function generate(): static |
14 | 14 | { |
15 | - RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function (Route $route) { |
|
15 | + RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function(Route $route) { |
|
16 | 16 | $this->items->push(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route))); |
17 | 17 | }); |
18 | 18 | |
@@ -21,28 +21,28 @@ discard block |
||
21 | 21 | |
22 | 22 | public function hasGroups(): bool |
23 | 23 | { |
24 | - return $this->items->map(function (NavItem $item) { |
|
24 | + return $this->items->map(function(NavItem $item) { |
|
25 | 25 | return $item->getGroup() !== null; |
26 | 26 | })->contains(true); |
27 | 27 | } |
28 | 28 | |
29 | 29 | public function getGroups(): array |
30 | 30 | { |
31 | - return $this->items->map(function (NavItem $item) { |
|
31 | + return $this->items->map(function(NavItem $item) { |
|
32 | 32 | return $item->getGroup(); |
33 | 33 | })->unique()->toArray(); |
34 | 34 | } |
35 | 35 | |
36 | 36 | public function getItemsInGroup(?string $group): Collection |
37 | 37 | { |
38 | - return $this->items->filter(function ($item) use ($group) { |
|
38 | + return $this->items->filter(function($item) use ($group) { |
|
39 | 39 | return $item->getGroup() === $group || $item->getGroup() === Str::slug($group); |
40 | 40 | })->sortBy('priority')->values(); |
41 | 41 | } |
42 | 42 | |
43 | 43 | protected function filterHiddenItems(): Collection |
44 | 44 | { |
45 | - return $this->items->reject(function (NavItem $item) { |
|
45 | + return $this->items->reject(function(NavItem $item) { |
|
46 | 46 | return $item->route->getSourceModel()->matter('hidden', false) || ($item->route->getRouteKey() === 'docs/index'); |
47 | 47 | })->values(); |
48 | 48 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | { |
57 | 57 | $orderIndexArray = config('docs.sidebar_order', []); |
58 | 58 | |
59 | - if (! in_array($slug, $orderIndexArray)) { |
|
59 | + if (!in_array($slug, $orderIndexArray)) { |
|
60 | 60 | return 500; |
61 | 61 | } |
62 | 62 |
@@ -28,11 +28,11 @@ discard block |
||
28 | 28 | /** @return $this */ |
29 | 29 | public function generate(): static |
30 | 30 | { |
31 | - RoutingService::getInstance()->getRoutes()->each(function (Route $route) { |
|
31 | + RoutingService::getInstance()->getRoutes()->each(function(Route $route) { |
|
32 | 32 | $this->items->push(NavItem::fromRoute($route)); |
33 | 33 | }); |
34 | 34 | |
35 | - collect(config('hyde.navigation.custom', []))->each(function (NavItem $item) { |
|
35 | + collect(config('hyde.navigation.custom', []))->each(function(NavItem $item) { |
|
36 | 36 | $this->items->push($item); |
37 | 37 | }); |
38 | 38 | |
@@ -64,14 +64,14 @@ discard block |
||
64 | 64 | |
65 | 65 | protected function filterHiddenItems(): Collection |
66 | 66 | { |
67 | - return $this->items->reject(function (NavItem $item) { |
|
67 | + return $this->items->reject(function(NavItem $item) { |
|
68 | 68 | return $item->hidden; |
69 | 69 | })->values(); |
70 | 70 | } |
71 | 71 | |
72 | 72 | protected function filterDuplicateItems(): Collection |
73 | 73 | { |
74 | - return $this->items->unique(function (NavItem $item) { |
|
74 | + return $this->items->unique(function(NavItem $item) { |
|
75 | 75 | return $item->resolveLink(); |
76 | 76 | }); |
77 | 77 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | /** @return $this */ |
19 | 19 | public function addFeature(string $feature): static |
20 | 20 | { |
21 | - if (! in_array($feature, $this->features)) { |
|
21 | + if (!in_array($feature, $this->features)) { |
|
22 | 22 | $this->features[] = $feature; |
23 | 23 | } |
24 | 24 |