@@ -57,13 +57,13 @@ |
||
57 | 57 | view()->share('currentPage', ''); |
58 | 58 | |
59 | 59 | $this->assertStringContainsString('foo bar', |
60 | - Blade::render(' |
|
60 | + Blade::render(' |
|
61 | 61 | @push("scripts") |
62 | 62 | foo bar |
63 | 63 | @endpush |
64 | 64 | |
65 | 65 | @include("hyde::layouts.scripts")' |
66 | - ) |
|
66 | + ) |
|
67 | 67 | ); |
68 | 68 | } |
69 | 69 | } |
@@ -177,7 +177,7 @@ |
||
177 | 177 | */ |
178 | 178 | public function hasSiteUrl(): bool |
179 | 179 | { |
180 | - return ! blank(config('site.url')); |
|
180 | + return !blank(config('site.url')); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -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; |
@@ -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 |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public static function getSourceFileListForModel(string $model): array |
58 | 58 | { |
59 | - if (! class_exists($model) || ! is_subclass_of($model, AbstractPage::class)) { |
|
59 | + if (!class_exists($model) || !is_subclass_of($model, AbstractPage::class)) { |
|
60 | 60 | throw new UnsupportedPageTypeException($model); |
61 | 61 | } |
62 | 62 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | $files = []; |
66 | 66 | foreach (glob(Hyde::path($model::qualifyBasename('{*,**/*}')), GLOB_BRACE) as $filepath) { |
67 | - if (! str_starts_with(basename($filepath), '_')) { |
|
67 | + if (!str_starts_with(basename($filepath), '_')) { |
|
68 | 68 | $files[] = self::formatSlugForModel($model, $filepath); |
69 | 69 | } |
70 | 70 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | public function compileStaticPages(): void |
36 | 36 | { |
37 | - $this->getDiscoveredModels()->each(function (string $pageClass) { |
|
37 | + $this->getDiscoveredModels()->each(function(string $pageClass) { |
|
38 | 38 | $this->compilePagesForClass($pageClass); |
39 | 39 | }); |
40 | 40 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | $this->withProgressBar( |
62 | 62 | $collection, |
63 | - function ($filepath) { |
|
63 | + function($filepath) { |
|
64 | 64 | copy($filepath, Hyde::getSiteOutputPath('media/'.basename($filepath))); |
65 | 65 | } |
66 | 66 | ); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | protected function getDiscoveredModels(): Collection |
71 | 71 | { |
72 | - return $this->router->getRoutes()->map(function (Route $route) { |
|
72 | + return $this->router->getRoutes()->map(function(Route $route) { |
|
73 | 73 | return $route->getPageType(); |
74 | 74 | })->unique(); |
75 | 75 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | |
91 | 91 | protected function compileRoute(): \Closure |
92 | 92 | { |
93 | - return function (Route $route) { |
|
93 | + return function(Route $route) { |
|
94 | 94 | return (new StaticPageBuilder($route->getSourceModel()))->__invoke(); |
95 | 95 | }; |
96 | 96 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | |
103 | 103 | protected function isItSafeToCleanOutputDirectory(): bool |
104 | 104 | { |
105 | - if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
105 | + if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
106 | 106 | $this->info('Output directory will not be emptied.'); |
107 | 107 | |
108 | 108 | return false; |