Passed
Branch discover-filesystem (2a4c10)
by Caen
03:39
created
packages/framework/src/Services/BuildService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         );
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     protected function getDiscoveredModels(): RouteCollection
74 74
     {
75
-        return $this->router->getRoutes()->map(function (Route $route) {
75
+        return $this->router->getRoutes()->map(function(Route $route) {
76 76
             return $route->getPageType();
77 77
         })->unique();
78 78
     }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     /** @psalm-return \Closure(Route):string */
95 95
     protected function compileRoute(): \Closure
96 96
     {
97
-        return function (Route $route) {
97
+        return function(Route $route) {
98 98
             return (new StaticPageBuilder($route->getSourceModel()))->__invoke();
99 99
         };
100 100
     }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     protected function isItSafeToCleanOutputDirectory(): bool
108 108
     {
109
-        if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) {
109
+        if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) {
110 110
             $this->info('Output directory will not be emptied.');
111 111
 
112 112
             return false;
Please login to merge, or discard this patch.
packages/framework/src/Models/DocumentationSidebar.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
     /** @return $this */
16 16
     public function generate(): static
17 17
     {
18
-        Hyde::routes()->getRoutes(DocumentationPage::class)->each(function (Route $route) {
19
-            if (! $route->getSourceModel()->get('hidden', false)) {
20
-                $this->items->push(tap(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)), function (NavItem $item) {
18
+        Hyde::routes()->getRoutes(DocumentationPage::class)->each(function(Route $route) {
19
+            if (!$route->getSourceModel()->get('hidden', false)) {
20
+                $this->items->push(tap(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)), function(NavItem $item) {
21 21
                     $item->title = $item->route->getSourceModel()->get('label');
22 22
                 }));
23 23
             }
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
 
34 34
     public function getGroups(): array
35 35
     {
36
-        return $this->items->map(function (NavItem $item) {
36
+        return $this->items->map(function(NavItem $item) {
37 37
             return $item->getGroup();
38 38
         })->unique()->toArray();
39 39
     }
40 40
 
41 41
     public function getItemsInGroup(?string $group): Collection
42 42
     {
43
-        return $this->items->filter(function ($item) use ($group) {
43
+        return $this->items->filter(function($item) use ($group) {
44 44
             return $item->getGroup() === $group || $item->getGroup() === Str::slug($group);
45 45
         })->sortBy('priority')->values();
46 46
     }
Please login to merge, or discard this patch.
packages/framework/src/Models/NavigationMenu.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
     /** @return $this */
30 30
     public function generate(): static
31 31
     {
32
-        Hyde::routes()->each(function (Route $route) {
32
+        Hyde::routes()->each(function(Route $route) {
33 33
             $this->items->push(NavItem::fromRoute($route));
34 34
         });
35 35
 
36
-        collect(config('hyde.navigation.custom', []))->each(function (NavItem $item) {
36
+        collect(config('hyde.navigation.custom', []))->each(function(NavItem $item) {
37 37
             $this->items->push($item);
38 38
         });
39 39
 
@@ -59,14 +59,14 @@  discard block
 block discarded – undo
59 59
 
60 60
     protected function filterHiddenItems(): Collection
61 61
     {
62
-        return $this->items->reject(function (NavItem $item) {
62
+        return $this->items->reject(function(NavItem $item) {
63 63
             return $item->hidden;
64 64
         })->values();
65 65
     }
66 66
 
67 67
     protected function filterDuplicateItems(): Collection
68 68
     {
69
-        return $this->items->unique(function (NavItem $item) {
69
+        return $this->items->unique(function(NavItem $item) {
70 70
             return $item->resolveLink();
71 71
         });
72 72
     }
Please login to merge, or discard this patch.
packages/framework/src/Models/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     /** @inheritDoc */
113 113
     public static function getFromSource(string $sourceFilePath): static
114 114
     {
115
-        return Hyde::routes()->first(function (RouteContract $route) use ($sourceFilePath) {
115
+        return Hyde::routes()->first(function(RouteContract $route) use ($sourceFilePath) {
116 116
             return $route->getSourceFilePath() === $sourceFilePath;
117 117
         }) ?? throw new RouteNotFoundException($sourceFilePath);
118 118
     }
Please login to merge, or discard this patch.
packages/testing/src/helpers.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
11 11
     }
12 12
 }
13 13
 
14
-if (! function_exists('backupDirectory')) {
14
+if (!function_exists('backupDirectory')) {
15 15
     /** @deprecated v0.60.x - You should not run tests in a production environment. */
16 16
     function backupDirectory(string $directory): void
17 17
     {
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     }
22 22
 }
23 23
 
24
-if (! function_exists('restoreDirectory')) {
24
+if (!function_exists('restoreDirectory')) {
25 25
     /** @deprecated v0.60.x - You should not run tests in a production environment. */
26 26
     function restoreDirectory(string $directory): void
27 27
     {
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     }
33 33
 }
34 34
 
35
-if (! function_exists('deleteDirectory')) {
35
+if (!function_exists('deleteDirectory')) {
36 36
     function deleteDirectory(string $directory): void
37 37
     {
38 38
         if (file_exists($directory)) {
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     }
42 42
 }
43 43
 
44
-if (! function_exists('unlinkUnlessDefault')) {
44
+if (!function_exists('unlinkUnlessDefault')) {
45 45
     function unlinkUnlessDefault(string $filepath): void
46 46
     {
47 47
         $protected = [
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             '.gitkeep',
52 52
         ];
53 53
 
54
-        if (! in_array(basename($filepath), $protected)) {
54
+        if (!in_array(basename($filepath), $protected)) {
55 55
             unlink($filepath);
56 56
         }
57 57
     }
Please login to merge, or discard this patch.
packages/framework/src/Actions/GeneratesDocumentationSearchIndexFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     {
51 51
         /** @var DocumentationPage $page */
52 52
         foreach (DocumentationPage::all() as $page) {
53
-            if (! in_array($page->identifier, config('docs.exclude_from_search', []))) {
53
+            if (!in_array($page->identifier, config('docs.exclude_from_search', []))) {
54 54
                 $this->searchIndex->push(
55 55
                     $this->generatePageEntry($page)
56 56
                 );
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydeBuildSearchCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function handle(): int
43 43
     {
44
-        $this->action('Generating documentation site search index', function () {
44
+        $this->action('Generating documentation site search index', function() {
45 45
             $expected = $this->guesstimateGenerationTime();
46 46
             if ($expected > 0) {
47 47
                 $this->line("<fg=gray> > This will take an estimated $expected seconds. Terminal may seem non-responsive.</>");
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         }, sprintf('Created <info>%s</info>', GeneratesDocumentationSearchIndexFile::$filePath));
52 52
 
53 53
         if (config('docs.create_search_page', true)) {
54
-            $this->action('Generating search page', function () {
54
+            $this->action('Generating search page', function() {
55 55
                 $outputDirectory = Hyde::pathToRelative(Hyde::getSiteOutputPath(DocumentationPage::getOutputDirectory()));
56 56
                 $this->needsDirectory(Hyde::path($outputDirectory));
57 57
                 file_put_contents(
Please login to merge, or discard this patch.
packages/framework/src/Foundation/PageCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function getPages(?string $pageClass = null): self
36 36
     {
37
-        return ! $pageClass ? $this : $this->filter(function (PageContract $page) use ($pageClass): bool {
37
+        return !$pageClass ? $this : $this->filter(function(PageContract $page) use ($pageClass) : bool {
38 38
             return $page instanceof $pageClass;
39 39
         });
40 40
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
     protected function discoverPagesFor(string $pageClass): void
64 64
     {
65
-        $this->parsePagesFor($pageClass)->each(function ($page) {
65
+        $this->parsePagesFor($pageClass)->each(function($page) {
66 66
             $this->discover($page);
67 67
         });
68 68
     }
Please login to merge, or discard this patch.
packages/framework/src/HydeKernel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
     public function files(): FileCollection
111 111
     {
112
-        if (! $this->booted) {
112
+        if (!$this->booted) {
113 113
             $this->boot();
114 114
         }
115 115
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
     public function pages(): PageCollection
120 120
     {
121
-        if (! $this->booted) {
121
+        if (!$this->booted) {
122 122
             $this->boot();
123 123
         }
124 124
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 
128 128
     public function routes(): RouteCollection
129 129
     {
130
-        if (! $this->booted) {
130
+        if (!$this->booted) {
131 131
             $this->boot();
132 132
         }
133 133
 
Please login to merge, or discard this patch.