Passed
Push — master ( 6e1056...612b24 )
by Caen
03:45 queued 12s
created
packages/framework/src/Models/NavigationMenu.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@  discard block
 block discarded – undo
28 28
     /** @return $this */
29 29
     public function generate(): static
30 30
     {
31
-        RoutingService::getInstance()->getRoutes()->each(function (Route $route) {
31
+        RoutingService::getInstance()->getRoutes()->each(function(Route $route) {
32 32
             $this->items->push(NavItem::fromRoute($route));
33 33
         });
34 34
 
35
-        collect(config('hyde.navigation.custom', []))->each(function (NavItem $item) {
35
+        collect(config('hyde.navigation.custom', []))->each(function(NavItem $item) {
36 36
             $this->items->push($item);
37 37
         });
38 38
 
@@ -64,14 +64,14 @@  discard block
 block discarded – undo
64 64
 
65 65
     protected function filterHiddenItems(): Collection
66 66
     {
67
-        return $this->items->reject(function (NavItem $item) {
67
+        return $this->items->reject(function(NavItem $item) {
68 68
             return $item->hidden;
69 69
         })->values();
70 70
     }
71 71
 
72 72
     protected function filterDuplicateItems(): Collection
73 73
     {
74
-        return $this->items->unique(function (NavItem $item) {
74
+        return $this->items->unique(function(NavItem $item) {
75 75
             return $item->resolveLink();
76 76
         });
77 77
     }
Please login to merge, or discard this patch.
framework/src/Concerns/Markdown/HasConfigurableMarkdownFeatures.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /** @return $this */
19 19
     public function addFeature(string $feature): static
20 20
     {
21
-        if (! in_array($feature, $this->features)) {
21
+        if (!in_array($feature, $this->features)) {
22 22
             $this->features[] = $feature;
23 23
         }
24 24
 
Please login to merge, or discard this patch.
packages/framework/src/Services/DiscoveryService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public static function getSourceFileListForModel(string $model): array
58 58
     {
59
-        if (! class_exists($model) || ! is_subclass_of($model, AbstractPage::class)) {
59
+        if (!class_exists($model) || !is_subclass_of($model, AbstractPage::class)) {
60 60
             throw new UnsupportedPageTypeException($model);
61 61
         }
62 62
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
         $files = [];
66 66
         foreach (glob(Hyde::path($model::qualifyBasename('{*,**/*}')), GLOB_BRACE) as $filepath) {
67
-            if (! str_starts_with(basename($filepath), '_')) {
67
+            if (!str_starts_with(basename($filepath), '_')) {
68 68
                 $files[] = self::formatSlugForModel($model, $filepath);
69 69
             }
70 70
         }
Please login to merge, or discard this patch.