Passed
Push — master ( a3e585...f221b7 )
by Caen
09:30 queued 05:54
created
packages/testing/src/helpers.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 /**
7 7
  * @deprecated You should not run tests in a production environment.
8 8
  */
9
-if (! function_exists('backup')) {
9
+if (!function_exists('backup')) {
10 10
     function backup(string $filepath)
11 11
     {
12 12
         if (file_exists($filepath)) {
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     }
16 16
 }
17 17
 
18
-if (! function_exists('restore')) {
18
+if (!function_exists('restore')) {
19 19
     function restore(string $filepath)
20 20
     {
21 21
         if (file_exists($filepath.'.bak')) {
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     }
26 26
 }
27 27
 
28
-if (! function_exists('unlinkIfExists')) {
28
+if (!function_exists('unlinkIfExists')) {
29 29
     function unlinkIfExists(string $filepath)
30 30
     {
31 31
         if (file_exists($filepath)) {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     }
35 35
 }
36 36
 
37
-if (! function_exists('backupDirectory')) {
37
+if (!function_exists('backupDirectory')) {
38 38
     function backupDirectory(string $directory)
39 39
     {
40 40
         if (file_exists($directory)) {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     }
44 44
 }
45 45
 
46
-if (! function_exists('restoreDirectory')) {
46
+if (!function_exists('restoreDirectory')) {
47 47
     function restoreDirectory(string $directory)
48 48
     {
49 49
         if (file_exists($directory.'-bak')) {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     }
54 54
 }
55 55
 
56
-if (! function_exists('deleteDirectory')) {
56
+if (!function_exists('deleteDirectory')) {
57 57
     function deleteDirectory(string $directory)
58 58
     {
59 59
         if (file_exists($directory)) {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     }
63 63
 }
64 64
 
65
-if (! function_exists('createTestPost')) {
65
+if (!function_exists('createTestPost')) {
66 66
     /** @deprecated - You usually don't need an actual post file anymore. Use touch() instead. */
67 67
     function createTestPost(?string $path = null): string
68 68
     {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     }
83 83
 }
84 84
 
85
-if (! function_exists('unlinkUnlessDefault')) {
85
+if (!function_exists('unlinkUnlessDefault')) {
86 86
     function unlinkUnlessDefault(string $filepath)
87 87
     {
88 88
         $protected = [
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             '.gitkeep',
93 93
         ];
94 94
 
95
-        if (! in_array(basename($filepath), $protected)) {
95
+        if (!in_array(basename($filepath), $protected)) {
96 96
             unlink($filepath);
97 97
         }
98 98
     }
Please login to merge, or discard this patch.
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/Commands/HydeBuildSitemapCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $actionTime = microtime(true);
38 38
 
39
-        if (! $this->runPreflightCheck()) {
39
+        if (!$this->runPreflightCheck()) {
40 40
             return 1;
41 41
         }
42 42
 
@@ -49,17 +49,17 @@  discard block
 block discarded – undo
49 49
 
50 50
     protected function runPreflightCheck(): bool
51 51
     {
52
-        if (! SitemapService::canGenerateSitemap()) {
52
+        if (!SitemapService::canGenerateSitemap()) {
53 53
             $this->error('Cannot generate sitemap.xml, please check your configuration.');
54 54
 
55
-            if (! Hyde::hasSiteUrl()) {
55
+            if (!Hyde::hasSiteUrl()) {
56 56
                 $this->warn('Hint: You don\'t have a site URL configured. Check config/hyde.php');
57 57
             }
58 58
             if (config('site.generate_sitemap', true) !== true) {
59 59
                 $this->warn('Hint: You have disabled sitemap generation in config/hyde.php');
60 60
                 $this->line(' > You can enable sitemap generation by setting <info>`site.generate_sitemap`</> to <info>`true`</>');
61 61
             }
62
-            if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
62
+            if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
63 63
                 $this->warn('Hint: You don\'t have the <info>`simplexml`</> extension installed. Check your PHP installation.');
64 64
             }
65 65
 
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Hyperlinks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
      */
178 178
     public function hasSiteUrl(): bool
179 179
     {
180
-        return ! blank(config('site.url'));
180
+        return !blank(config('site.url'));
181 181
     }
182 182
 
183 183
     /**
Please login to merge, or discard this patch.
packages/framework/src/Services/Markdown/ShortcodeProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
     public function processInput(): static
51 51
     {
52
-        $this->output = implode("\n", array_map(function ($line) {
52
+        $this->output = implode("\n", array_map(function($line) {
53 53
             return $this->expandShortcode($line);
54 54
         }, explode("\n", $this->input)));
55 55
 
Please login to merge, or discard this patch.
packages/framework/src/Services/Markdown/BladeDownProcessor.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 static function preprocess(string $markdown): string
32 32
     {
33
-        return implode("\n", array_map(function ($line) {
33
+        return implode("\n", array_map(function($line) {
34 34
             return str_starts_with(strtolower($line), strtolower('[Blade]:'))
35 35
                 ? '<!-- HYDE'.trim(htmlentities($line)).' -->'
36 36
                 : $line;
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     public function run(): static
52 52
     {
53
-        $this->output = implode("\n", array_map(function ($line) {
53
+        $this->output = implode("\n", array_map(function($line) {
54 54
             return $this->lineStartsWithDirective($line)
55 55
                 ? $this->processLine($line)
56 56
                 : $line;
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Filesystem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,11 +75,11 @@
 block discarded – undo
75 75
      */
76 76
     public function copy(string $from, string $to, bool $force = false): int|bool
77 77
     {
78
-        if (! file_exists($from)) {
78
+        if (!file_exists($from)) {
79 79
             return 404;
80 80
         }
81 81
 
82
-        if (file_exists($to) && ! $force) {
82
+        if (file_exists($to) && !$force) {
83 83
             return 409;
84 84
         }
85 85
 
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
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     /** @return $this */
13 13
     public function generate(): static
14 14
     {
15
-        RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function (Route $route) {
15
+        RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function(Route $route) {
16 16
             $this->items->push(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)));
17 17
         });
18 18
 
@@ -21,28 +21,28 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function hasGroups(): bool
23 23
     {
24
-        return $this->items->map(function (NavItem $item) {
24
+        return $this->items->map(function(NavItem $item) {
25 25
             return $item->getGroup() !== null;
26 26
         })->contains(true);
27 27
     }
28 28
 
29 29
     public function getGroups(): array
30 30
     {
31
-        return $this->items->map(function (NavItem $item) {
31
+        return $this->items->map(function(NavItem $item) {
32 32
             return $item->getGroup();
33 33
         })->unique()->toArray();
34 34
     }
35 35
 
36 36
     public function getItemsInGroup(?string $group): Collection
37 37
     {
38
-        return $this->items->filter(function ($item) use ($group) {
38
+        return $this->items->filter(function($item) use ($group) {
39 39
             return $item->getGroup() === $group || $item->getGroup() === Str::slug($group);
40 40
         })->sortBy('priority')->values();
41 41
     }
42 42
 
43 43
     protected function filterHiddenItems(): Collection
44 44
     {
45
-        return $this->items->reject(function (NavItem $item) {
45
+        return $this->items->reject(function(NavItem $item) {
46 46
             return $item->route->getSourceModel()->matter('hidden', false) || ($item->route->getRouteKey() === 'docs/index');
47 47
         })->values();
48 48
     }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $orderIndexArray = config('docs.sidebar_order', []);
58 58
 
59
-        if (! in_array($slug, $orderIndexArray)) {
59
+        if (!in_array($slug, $orderIndexArray)) {
60 60
             return 500;
61 61
         }
62 62
 
Please login to merge, or discard this patch.