@@ -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('makeDirectory')) { |
|
42 | +if (!function_exists('makeDirectory')) { |
|
43 | 43 | function makeDirectory(string $directory): void |
44 | 44 | { |
45 | 45 | if (file_exists($directory)) { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | } |
49 | 49 | } |
50 | 50 | |
51 | -if (! function_exists('unlinkUnlessDefault')) { |
|
51 | +if (!function_exists('unlinkUnlessDefault')) { |
|
52 | 52 | function unlinkUnlessDefault(string $filepath): void |
53 | 53 | { |
54 | 54 | $protected = [ |
@@ -58,13 +58,13 @@ discard block |
||
58 | 58 | '.gitkeep', |
59 | 59 | ]; |
60 | 60 | |
61 | - if (! in_array(basename($filepath), $protected)) { |
|
61 | + if (!in_array(basename($filepath), $protected)) { |
|
62 | 62 | unlink($filepath); |
63 | 63 | } |
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
67 | -if (! function_exists('strip_newlines')) { |
|
67 | +if (!function_exists('strip_newlines')) { |
|
68 | 68 | function strip_newlines(string $string, bool $keepUnixEndings = false): string |
69 | 69 | { |
70 | 70 | if ($keepUnixEndings) { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | } |
76 | 76 | } |
77 | 77 | |
78 | -if (! function_exists('strip_indentation')) { |
|
78 | +if (!function_exists('strip_indentation')) { |
|
79 | 79 | function strip_indentation(string $string, bool $indentUsingSpaces = true, int $indentationLength = 4): string |
80 | 80 | { |
81 | 81 | $indentation = $indentUsingSpaces ? str_repeat(' ', $indentationLength) : "\t"; |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
87 | -if (! function_exists('strip_newlines_and_indentation')) { |
|
87 | +if (!function_exists('strip_newlines_and_indentation')) { |
|
88 | 88 | function strip_newlines_and_indentation(string $string, bool $indentUsingSpaces = true, int $indentationLength = 4): string |
89 | 89 | { |
90 | 90 | return strip_newlines(strip_indentation($string, $indentUsingSpaces, $indentationLength)); |
@@ -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): void { |
|
22 | - $this->items->push(tap(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)), function (NavItem $item): void { |
|
21 | + Router::getRoutes(DocumentationPage::class)->each(function(Route $route): void { |
|
22 | + $this->items->push(tap(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)), function(NavItem $item): void { |
|
23 | 23 | $item->label = $item->route->getPage()->data('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): string { |
|
37 | + return $this->items->map(function(NavItem $item): string { |
|
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 (NavItem $item) use ($group): bool { |
|
44 | + return $this->items->filter(function(NavItem $item) use ($group) : bool { |
|
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 | } |