@@ -22,7 +22,7 @@ |
||
22 | 22 | echo "Short version: $shortVersion\n"; |
23 | 23 | $composerJson = json_decode(file_get_contents(__DIR__.'./../../packages/hyde/composer.json'), true); |
24 | 24 | $composerJson['require']['hyde/framework'] = "^0.$shortVersion"; |
25 | -file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)); |
|
25 | +file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES)); |
|
26 | 26 | |
27 | 27 | echo "Transforming upcoming release notes... \n"; |
28 | 28 |
@@ -121,14 +121,14 @@ |
||
121 | 121 | |
122 | 122 | protected function validateType(string $pageClass): void |
123 | 123 | { |
124 | - if (! in_array($pageClass, [MarkdownPage::class, BladePage::class, DocumentationPage::class])) { |
|
124 | + if (!in_array($pageClass, [MarkdownPage::class, BladePage::class, DocumentationPage::class])) { |
|
125 | 125 | throw new UnsupportedPageTypeException('The page type must be either "markdown", "blade", or "documentation"'); |
126 | 126 | } |
127 | 127 | } |
128 | 128 | |
129 | 129 | protected function failIfFileCannotBeSaved(string $path): void |
130 | 130 | { |
131 | - if (file_exists($path) && ! $this->force) { |
|
131 | + if (file_exists($path) && !$this->force) { |
|
132 | 132 | throw new FileConflictException($path); |
133 | 133 | } |
134 | 134 | } |
@@ -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; |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Hyde\Foundation\HydeKernel; |
6 | 6 | |
7 | -if (! function_exists('hyde')) { |
|
7 | +if (!function_exists('hyde')) { |
|
8 | 8 | /** |
9 | 9 | * Get the available HydeKernel instance. |
10 | 10 | */ |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | } |
15 | 15 | } |
16 | 16 | |
17 | -if (! function_exists('unslash')) { |
|
17 | +if (!function_exists('unslash')) { |
|
18 | 18 | /** |
19 | 19 | * Remove trailing slashes from the start and end of a string. |
20 | 20 | */ |
@@ -5,7 +5,7 @@ |
||
5 | 5 | use Rector\Config\RectorConfig; |
6 | 6 | use Rector\Laravel\Set\LaravelSetList; |
7 | 7 | |
8 | -return static function (RectorConfig $rectorConfig): void { |
|
8 | +return static function(RectorConfig $rectorConfig): void { |
|
9 | 9 | $rectorConfig->paths([__DIR__.'/packages/framework/src']); |
10 | 10 | $rectorConfig->sets([ |
11 | 11 | LaravelSetList::LARAVEL_90, |
@@ -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 | } |
@@ -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 | } |