Passed
Push — master ( ede5ba...ff66ee )
by Caen
03:20 queued 12s
created
packages/framework/src/Foundation/Kernel/PageCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function getPages(?string $pageClass = null): self
32 32
     {
33
-        return $pageClass ? $this->filter(function (HydePage $page) use ($pageClass): bool {
33
+        return $pageClass ? $this->filter(function(HydePage $page) use ($pageClass) : bool {
34 34
             return $page instanceof $pageClass;
35 35
         }) : $this;
36 36
     }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
     protected function discoverPagesFor(string $pageClass): void
74 74
     {
75
-        $this->parsePagesFor($pageClass)->each(function (HydePage $page): void {
75
+        $this->parsePagesFor($pageClass)->each(function(HydePage $page): void {
76 76
             $this->addPage($page);
77 77
         });
78 78
     }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Services/DiscoveryService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,11 +70,11 @@
 block discarded – undo
70 70
      */
71 71
     public static function getSourceFileListForModel(string $model): array
72 72
     {
73
-        if (! class_exists($model) || ! is_subclass_of($model, HydePage::class)) {
73
+        if (!class_exists($model) || !is_subclass_of($model, HydePage::class)) {
74 74
             throw new UnsupportedPageTypeException($model);
75 75
         }
76 76
 
77
-        return Files::getSourceFiles($model)->flatten()->map(function (SourceFile $file) use ($model): string {
77
+        return Files::getSourceFiles($model)->flatten()->map(function(SourceFile $file) use ($model): string {
78 78
             return static::pathToIdentifier($model, $file->withoutDirectoryPrefix());
79 79
         })->toArray();
80 80
     }
Please login to merge, or discard this patch.
framework/src/Framework/Features/Navigation/DocumentationSidebar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     /** @return $this */
19 19
     public function generate(): static
20 20
     {
21
-        Routes::getRoutes(DocumentationPage::class)->each(function (Route $route): void {
21
+        Routes::getRoutes(DocumentationPage::class)->each(function(Route $route): void {
22 22
             $this->items->put($route->getRouteKey(), NavItem::fromRoute($route));
23 23
         });
24 24
 
@@ -32,14 +32,14 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function getGroups(): array
34 34
     {
35
-        return $this->items->map(function (NavItem $item): string {
35
+        return $this->items->map(function(NavItem $item): string {
36 36
             return $item->getGroup();
37 37
         })->unique()->toArray();
38 38
     }
39 39
 
40 40
     public function getItemsInGroup(?string $group): Collection
41 41
     {
42
-        return $this->items->filter(function (NavItem $item) use ($group): bool {
42
+        return $this->items->filter(function(NavItem $item) use ($group) : bool {
43 43
             return ($item->getGroup() === $group) || ($item->getGroup() === Str::slug($group));
44 44
         })->sortBy('navigation.priority')->values();
45 45
     }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Features/Navigation/BaseNavigationMenu.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@  discard block
 block discarded – undo
30 30
     /** @return $this */
31 31
     public function generate(): static
32 32
     {
33
-        Routes::each(function (Route $route): void {
33
+        Routes::each(function(Route $route): void {
34 34
             $this->items->put($route->getRouteKey(), NavItem::fromRoute($route));
35 35
         });
36 36
 
37
-        collect(config('hyde.navigation.custom', []))->each(function (NavItem $item): void {
37
+        collect(config('hyde.navigation.custom', []))->each(function(NavItem $item): void {
38 38
             $this->items->push($item);
39 39
         });
40 40
 
@@ -60,14 +60,14 @@  discard block
 block discarded – undo
60 60
 
61 61
     protected function filterHiddenItems(): Collection
62 62
     {
63
-        return $this->items->reject(function (NavItem $item): bool {
63
+        return $this->items->reject(function(NavItem $item): bool {
64 64
             return $this->shouldItemBeHidden($item);
65 65
         })->values();
66 66
     }
67 67
 
68 68
     protected function filterDuplicateItems(): Collection
69 69
     {
70
-        return $this->items->unique(function (NavItem $item): string {
70
+        return $this->items->unique(function(NavItem $item): string {
71 71
             return $item->label;
72 72
         });
73 73
     }
Please login to merge, or discard this patch.
packages/framework/src/Console/ConsoleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             Commands\ChangeSourceDirectoryCommand::class,
39 39
         ]);
40 40
 
41
-        Artisan::starting(function (Artisan $artisan): void {
41
+        Artisan::starting(function(Artisan $artisan): void {
42 42
             $artisan->setName(self::logo());
43 43
         });
44 44
     }
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Internal/LoadConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     /** Get all the configuration files for the application. */
15 15
     protected function getConfigurationFiles(Application $app): array
16 16
     {
17
-        return tap(parent::getConfigurationFiles($app), function (array &$files) use ($app): void {
17
+        return tap(parent::getConfigurationFiles($app), function(array &$files) use ($app): void {
18 18
             // Inject our custom config file which is stored in `app/config.php`.
19 19
             $files['app'] = $app->basePath().DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'config.php';
20 20
         });
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Kernel/Hyperlinks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
      */
110 110
     public function hasSiteUrl(): bool
111 111
     {
112
-        return ! blank(config('hyde.url'));
112
+        return !blank(config('hyde.url'));
113 113
     }
114 114
 
115 115
     /**
Please login to merge, or discard this patch.
packages/framework/src/Foundation/ConsoleKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         // the default LoadConfiguration bootstrapper class with our implementation.
24 24
         // We do this by swapping out the LoadConfiguration class with our own.
25 25
 
26
-        return array_values(tap(array_combine($bootstrappers, $bootstrappers), function (array &$array): void {
26
+        return array_values(tap(array_combine($bootstrappers, $bootstrappers), function(array &$array): void {
27 27
             $array[\LaravelZero\Framework\Bootstrap\LoadConfiguration::class] = \Hyde\Foundation\Internal\LoadConfiguration::class;
28 28
         }));
29 29
     }
Please login to merge, or discard this patch.
packages/framework/config/torchlight.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
- /*
3
+    /*
4 4
 |--------------------------------------------------------------------------
5 5
 | Torchlight
6 6
 |--------------------------------------------------------------------------
Please login to merge, or discard this patch.