Passed
Push — master ( ce5bc3...2aaa83 )
by Caen
03:07 queued 11s
created
packages/framework/src/Framework/Features/Navigation/NavigationMenu.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     public function hasDropdowns(): bool
51 51
     {
52
-        if (! $this->dropdownsEnabled()) {
52
+        if (!$this->dropdownsEnabled()) {
53 53
             return false;
54 54
         }
55 55
 
@@ -59,18 +59,18 @@  discard block
 block discarded – undo
59 59
     /** @return array<string, DropdownNavItem> */
60 60
     public function getDropdowns(): array
61 61
     {
62
-        if (! $this->dropdownsEnabled()) {
62
+        if (!$this->dropdownsEnabled()) {
63 63
             throw new BadMethodCallException('Dropdowns are not enabled. Enable it by setting `hyde.navigation.subdirectories` to `dropdown`.');
64 64
         }
65 65
 
66
-        return $this->items->filter(function (NavItem $item): bool {
66
+        return $this->items->filter(function(NavItem $item): bool {
67 67
             return $item instanceof DropdownNavItem;
68 68
         })->all();
69 69
     }
70 70
 
71 71
     protected static function canBeInDropdown(NavItem $item): bool
72 72
     {
73
-        return ($item->getGroup() !== null) && ! in_array($item->route->getPageClass(), [DocumentationPage::class, MarkdownPost::class]);
73
+        return ($item->getGroup() !== null) && !in_array($item->route->getPageClass(), [DocumentationPage::class, MarkdownPost::class]);
74 74
     }
75 75
 
76 76
     protected static function dropdownsEnabled(): bool
@@ -81,6 +81,6 @@  discard block
 block discarded – undo
81 81
     protected static function shouldItemBeHidden(NavItem $item): bool
82 82
     {
83 83
         return parent::shouldItemBeHidden($item) ||
84
-            $item->getRoute()?->getPage() instanceof DocumentationPage && ! $item->getRoute()->is('docs/index');
84
+            $item->getRoute()?->getPage() instanceof DocumentationPage && !$item->getRoute()->is('docs/index');
85 85
     }
86 86
 }
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
-        Router::each(function (Route $route): void {
33
+        Router::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.
src/Markdown/Contracts/FrontMatter/SubSchemas/NavigationSchema.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public const NAVIGATION_SCHEMA = [
14 14
         'label'     => 'string',
15 15
         'group'     => 'string', // Category is also supported
16
-        'hidden'    => 'bool',  // Visible is also supported (but obviously invert the value)
17
-        'priority'  => 'int',  // Order is also supported
16
+        'hidden'    => 'bool', // Visible is also supported (but obviously invert the value)
17
+        'priority'  => 'int', // Order is also supported
18 18
     ];
19 19
 }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Factories/NavigationDataFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
 
192 192
     protected function invert(?bool $value): ?bool
193 193
     {
194
-        return $value === null ? null : ! $value;
194
+        return $value === null ? null : !$value;
195 195
     }
196 196
 
197 197
     protected function offset(?int $value, int $offset): ?int
Please login to merge, or discard this patch.
packages/testing/src/TestCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     {
34 34
         parent::setUp();
35 35
 
36
-        if (! static::$booted) {
36
+        if (!static::$booted) {
37 37
             $this->resetApplication();
38 38
 
39 39
             static::$booted = true;
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                 if (Filesystem::isDirectory($file)) {
130 130
                     $keep = ['_site', '_media', '_pages', '_posts', '_docs', 'app', 'config', 'storage', 'vendor', 'node_modules'];
131 131
 
132
-                    if (! in_array($file, $keep)) {
132
+                    if (!in_array($file, $keep)) {
133 133
                         Filesystem::deleteDirectory($file);
134 134
                     }
135 135
                 } else {
Please login to merge, or discard this patch.