Passed
Branch internal-codebase-improvements (f6b8c6)
by Caen
05:33
created
packages/testing/src/DuskTestCase.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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',
Please login to merge, or discard this patch.
packages/framework/tests/Unit/Views/ScriptsComponentViewTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,13 +57,13 @@
 block discarded – undo
57 57
         view()->share('currentPage', '');
58 58
 
59 59
         $this->assertStringContainsString('foo bar',
60
-             Blade::render('
60
+                Blade::render('
61 61
                 @push("scripts")
62 62
                 foo bar
63 63
                 @endpush
64 64
                 
65 65
                 @include("hyde::layouts.scripts")'
66
-             )
66
+                )
67 67
         );
68 68
     }
69 69
 }
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
@@ -27,11 +27,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
packages/framework/src/Models/DocumentationSidebar.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
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
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.