@@ -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 |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | 'file-viewer' => 'File Viewer', |
72 | 72 | ]; |
73 | 73 | |
74 | - if (! isset($routes[$page])) { |
|
74 | + if (!isset($routes[$page])) { |
|
75 | 75 | header('HTTP/1.1 404 Not Found'); |
76 | 76 | $page = '404'; |
77 | 77 | } |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | $class = $this->type; |
368 | 368 | $filename = $this->filename; |
369 | 369 | $filepath = $class::$sourceDirectory.'/'.$filename.$class::$fileExtension; |
370 | - if (! file_exists(Hyde::path($filepath))) { |
|
370 | + if (!file_exists(Hyde::path($filepath))) { |
|
371 | 371 | throw new FileNotFoundException($filepath); |
372 | 372 | } |
373 | 373 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | use Hyde\Framework\HydeKernel; |
5 | 5 | use Illuminate\Support\Collection; |
6 | 6 | |
7 | -if (! function_exists('hyde')) { |
|
7 | +if (!function_exists('hyde')) { |
|
8 | 8 | /** |
9 | 9 | * Get the available HydeKernel instance. |
10 | 10 | * |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | } |
17 | 17 | } |
18 | 18 | |
19 | -if (! function_exists('unslash')) { |
|
19 | +if (!function_exists('unslash')) { |
|
20 | 20 | /** |
21 | 21 | * Remove trailing slashes from the start and end of a string. |
22 | 22 | * |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | } |
30 | 30 | } |
31 | 31 | |
32 | -if (! function_exists('array_map_unique')) { |
|
32 | +if (!function_exists('array_map_unique')) { |
|
33 | 33 | /** |
34 | 34 | * Map a callback over an array and remove duplicates. |
35 | 35 | * |
@@ -27,10 +27,10 @@ discard block |
||
27 | 27 | { |
28 | 28 | parent::setUp(); |
29 | 29 | |
30 | - if (! static::$booted) { |
|
30 | + if (!static::$booted) { |
|
31 | 31 | $this->resetApplication(); |
32 | 32 | |
33 | - Hyde::macro('touch', function (string|array $path) { |
|
33 | + Hyde::macro('touch', function(string|array $path) { |
|
34 | 34 | if (is_array($path)) { |
35 | 35 | foreach ($path as $p) { |
36 | 36 | touch(Hyde::path($p)); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | } |
41 | 41 | }); |
42 | 42 | |
43 | - Hyde::macro('unlink', function (string|array $path) { |
|
43 | + Hyde::macro('unlink', function(string|array $path) { |
|
44 | 44 | if (is_array($path)) { |
45 | 45 | foreach ($path as $p) { |
46 | 46 | unlink(Hyde::path($p)); |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | /** |
7 | 7 | * @deprecated You should not run tests in a production environment. |
8 | 8 | */ |
9 | -if (! function_exists('backup')) { |
|
9 | +if (!function_exists('backup')) { |
|
10 | 10 | function backup(string $filepath) |
11 | 11 | { |
12 | 12 | if (file_exists($filepath)) { |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | } |
16 | 16 | } |
17 | 17 | |
18 | -if (! function_exists('restore')) { |
|
18 | +if (!function_exists('restore')) { |
|
19 | 19 | function restore(string $filepath) |
20 | 20 | { |
21 | 21 | if (file_exists($filepath.'.bak')) { |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | } |
26 | 26 | } |
27 | 27 | |
28 | -if (! function_exists('unlinkIfExists')) { |
|
28 | +if (!function_exists('unlinkIfExists')) { |
|
29 | 29 | function unlinkIfExists(string $filepath) |
30 | 30 | { |
31 | 31 | if (file_exists($filepath)) { |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | } |
36 | 36 | |
37 | -if (! function_exists('backupDirectory')) { |
|
37 | +if (!function_exists('backupDirectory')) { |
|
38 | 38 | function backupDirectory(string $directory) |
39 | 39 | { |
40 | 40 | if (file_exists($directory)) { |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
46 | -if (! function_exists('restoreDirectory')) { |
|
46 | +if (!function_exists('restoreDirectory')) { |
|
47 | 47 | function restoreDirectory(string $directory) |
48 | 48 | { |
49 | 49 | if (file_exists($directory.'-bak')) { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | } |
54 | 54 | } |
55 | 55 | |
56 | -if (! function_exists('deleteDirectory')) { |
|
56 | +if (!function_exists('deleteDirectory')) { |
|
57 | 57 | function deleteDirectory(string $directory) |
58 | 58 | { |
59 | 59 | if (file_exists($directory)) { |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | } |
63 | 63 | } |
64 | 64 | |
65 | -if (! function_exists('createTestPost')) { |
|
65 | +if (!function_exists('createTestPost')) { |
|
66 | 66 | /** @deprecated - You usually don't need an actual post file anymore. Use touch() instead. */ |
67 | 67 | function createTestPost(?string $path = null): string |
68 | 68 | { |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
85 | -if (! function_exists('unlinkUnlessDefault')) { |
|
85 | +if (!function_exists('unlinkUnlessDefault')) { |
|
86 | 86 | function unlinkUnlessDefault(string $filepath) |
87 | 87 | { |
88 | 88 | $protected = [ |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | '.gitkeep', |
93 | 93 | ]; |
94 | 94 | |
95 | - if (! in_array(basename($filepath), $protected)) { |
|
95 | + if (!in_array(basename($filepath), $protected)) { |
|
96 | 96 | unlink($filepath); |
97 | 97 | } |
98 | 98 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | protected function setUp(): void |
22 | 22 | { |
23 | 23 | // \LaravelZero\Framework\Testing\TestCase instead \Illuminate\Foundation\Testing\TestCase |
24 | - if (! $this->app) { |
|
24 | + if (!$this->app) { |
|
25 | 25 | $this->refreshApplication(); |
26 | 26 | } |
27 | 27 | |
@@ -50,14 +50,14 @@ discard block |
||
50 | 50 | |
51 | 51 | Browser::$storeSourceAt = base_path('tests/Browser/source'); |
52 | 52 | |
53 | - Browser::$userResolver = function () { |
|
53 | + Browser::$userResolver = function() { |
|
54 | 54 | return $this->user(); |
55 | 55 | }; |
56 | 56 | |
57 | - Browser::macro('storeSourceAsHtml', function ($name) { |
|
57 | + Browser::macro('storeSourceAsHtml', function($name) { |
|
58 | 58 | $source = $this->driver->getPageSource(); |
59 | 59 | |
60 | - if (! empty($source)) { |
|
60 | + if (!empty($source)) { |
|
61 | 61 | file_put_contents( |
62 | 62 | sprintf('%s/%s.html', rtrim(static::$storeSourceAt, '/'), $name), $source |
63 | 63 | ); |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | public static function prepare() |
108 | 108 | { |
109 | - if (! static::runningInSail()) { |
|
109 | + if (!static::runningInSail()) { |
|
110 | 110 | static::startChromeDriver(); |
111 | 111 | } |
112 | 112 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | { |
121 | 121 | $options = (new ChromeOptions)->addArguments(collect([ |
122 | 122 | $this->shouldStartMaximized() ? '--start-maximized' : '--window-size=1920,1080', |
123 | - ])->unless($this->hasHeadlessDisabled(), function ($items) { |
|
123 | + ])->unless($this->hasHeadlessDisabled(), function($items) { |
|
124 | 124 | return $items->merge([ |
125 | 125 | '--disable-gpu', |
126 | 126 | '--headless', |
@@ -27,11 +27,11 @@ discard block |
||
27 | 27 | |
28 | 28 | public function generate(): self |
29 | 29 | { |
30 | - RoutingService::getInstance()->getRoutes()->each(function (Route $route) { |
|
30 | + RoutingService::getInstance()->getRoutes()->each(function(Route $route) { |
|
31 | 31 | $this->items->push(NavItem::fromRoute($route)); |
32 | 32 | }); |
33 | 33 | |
34 | - collect(config('hyde.navigation.custom', []))->each(function (NavItem $item) { |
|
34 | + collect(config('hyde.navigation.custom', []))->each(function(NavItem $item) { |
|
35 | 35 | $this->items->push($item); |
36 | 36 | }); |
37 | 37 | |
@@ -61,14 +61,14 @@ discard block |
||
61 | 61 | |
62 | 62 | protected function filterHiddenItems(): Collection |
63 | 63 | { |
64 | - return $this->items->reject(function (NavItem $item) { |
|
64 | + return $this->items->reject(function(NavItem $item) { |
|
65 | 65 | return $item->hidden; |
66 | 66 | })->values(); |
67 | 67 | } |
68 | 68 | |
69 | 69 | protected function filterDuplicateItems(): Collection |
70 | 70 | { |
71 | - return $this->items->unique(function (NavItem $item) { |
|
71 | + return $this->items->unique(function(NavItem $item) { |
|
72 | 72 | return $item->resolveLink(); |
73 | 73 | }); |
74 | 74 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | { |
12 | 12 | public function generate(): self |
13 | 13 | { |
14 | - RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function (Route $route) { |
|
14 | + RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function(Route $route) { |
|
15 | 15 | $this->items->push(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route))); |
16 | 16 | }); |
17 | 17 | |
@@ -20,28 +20,28 @@ discard block |
||
20 | 20 | |
21 | 21 | public function hasGroups(): bool |
22 | 22 | { |
23 | - return $this->items->map(function (NavItem $item) { |
|
23 | + return $this->items->map(function(NavItem $item) { |
|
24 | 24 | return $item->getGroup() !== null; |
25 | 25 | })->contains(true); |
26 | 26 | } |
27 | 27 | |
28 | 28 | public function getGroups(): array |
29 | 29 | { |
30 | - return $this->items->map(function (NavItem $item) { |
|
30 | + return $this->items->map(function(NavItem $item) { |
|
31 | 31 | return $item->getGroup(); |
32 | 32 | })->unique()->toArray(); |
33 | 33 | } |
34 | 34 | |
35 | 35 | public function getItemsInGroup(?string $group): Collection |
36 | 36 | { |
37 | - return $this->items->filter(function ($item) use ($group) { |
|
37 | + return $this->items->filter(function($item) use ($group) { |
|
38 | 38 | return $item->getGroup() === $group || $item->getGroup() === Str::slug($group); |
39 | 39 | })->sortBy('priority')->values(); |
40 | 40 | } |
41 | 41 | |
42 | 42 | protected function filterHiddenItems(): Collection |
43 | 43 | { |
44 | - return $this->items->reject(function (NavItem $item) { |
|
44 | + return $this->items->reject(function(NavItem $item) { |
|
45 | 45 | return $item->route->getSourceModel()->matter('hidden', false) || ($item->route->getRouteKey() === 'docs/index'); |
46 | 46 | })->values(); |
47 | 47 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | { |
56 | 56 | $orderIndexArray = config('docs.sidebar_order', []); |
57 | 57 | |
58 | - if (! in_array($slug, $orderIndexArray)) { |
|
58 | + if (!in_array($slug, $orderIndexArray)) { |
|
59 | 59 | return 500; |
60 | 60 | } |
61 | 61 |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | */ |
133 | 133 | public static function getSourceFileListForModel(string $model): array|false |
134 | 134 | { |
135 | - if (! class_exists($model) || ! is_subclass_of($model, AbstractPage::class)) { |
|
135 | + if (!class_exists($model) || !is_subclass_of($model, AbstractPage::class)) { |
|
136 | 136 | return false; |
137 | 137 | } |
138 | 138 | |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | |
141 | 141 | $files = []; |
142 | 142 | foreach (glob(Hyde::path($model::qualifyBasename('{*,**/*}')), GLOB_BRACE) as $filepath) { |
143 | - if (! str_starts_with(basename($filepath), '_')) { |
|
143 | + if (!str_starts_with(basename($filepath), '_')) { |
|
144 | 144 | $files[] = self::formatSlugForModel($model, $filepath); |
145 | 145 | } |
146 | 146 | } |