Passed
Push — master ( ed57da...44d9e1 )
by Caen
04:10 queued 11s
created
packages/framework/src/Framework/Features/Templates/PublishableView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $path = static::getOutputPath();
19 19
 
20
-        if (file_exists($path) && ! $force) {
20
+        if (file_exists($path) && !$force) {
21 21
             return false;
22 22
         }
23 23
 
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Concerns/ManagesHydeKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */
60 60
     public function getDiscoveredPageTypes(): array
61 61
     {
62
-        return $this->pages()->map(function (HydePage $page): string {
62
+        return $this->pages()->map(function(HydePage $page): string {
63 63
             return $page::class;
64 64
         })->unique()->values()->toArray();
65 65
     }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Services/BuildService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     public function compileStaticPages(): void
42 42
     {
43
-        collect(Hyde::getDiscoveredPageTypes())->each(function (string $pageClass) {
43
+        collect(Hyde::getDiscoveredPageTypes())->each(function(string $pageClass) {
44 44
             $this->compilePagesForClass($pageClass);
45 45
         });
46 46
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $this->needsDirectory(Hyde::sitePath('media'));
63 63
 
64 64
         $this->comment('Transferring Media Assets...');
65
-        $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function (string $filepath): void {
65
+        $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function(string $filepath): void {
66 66
             $sitePath = Hyde::sitePath('media/'.unslash(Str::after($filepath, Hyde::path('_media'))));
67 67
             $this->needsParentDirectory($sitePath);
68 68
             copy($filepath, $sitePath);
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
         $collection = $this->router->getRoutes($pageClass);
82 82
 
83
-        $this->withProgressBar($collection, function (Route $route): void {
83
+        $this->withProgressBar($collection, function(Route $route): void {
84 84
             (new StaticPageBuilder($route->getPage()))->__invoke();
85 85
         });
86 86
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     protected function isItSafeToCleanOutputDirectory(): bool
96 96
     {
97
-        if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) {
97
+        if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) {
98 98
             $this->info('Output directory will not be emptied.');
99 99
 
100 100
             return false;
Please login to merge, or discard this patch.
monorepo/HydeStan/vendor/php-console/console.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
     public function line(string $message = ''): self
22 22
     {
23
-        return $this->write($message . PHP_EOL);
23
+        return $this->write($message.PHP_EOL);
24 24
     }
25 25
 
26 26
     public function newline(int $count = 1): self
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     }
55 55
     protected function ansi(string $string, string $color): string
56 56
     {
57
-        return "\033[" . $color . 'm' . $string . "\033[0m";
57
+        return "\033[".$color.'m'.$string."\033[0m";
58 58
     }
59 59
 
60 60
     protected function black(string $string): string
Please login to merge, or discard this patch.
packages/framework/src/Framework/Concerns/InteractsWithFrontMatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,6 +42,6 @@
 block discarded – undo
42 42
      */
43 43
     public function has(string $key): bool
44 44
     {
45
-        return ! blank($this->data($key));
45
+        return !blank($this->data($key));
46 46
     }
47 47
 }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Concerns/ValidatesExistence.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         /** @var \Hyde\Pages\Concerns\HydePage $model */
25 25
         $filepath = $model::sourcePath($slug);
26 26
 
27
-        if (! file_exists(Hyde::path($filepath))) {
27
+        if (!file_exists(Hyde::path($filepath))) {
28 28
             throw new FileNotFoundException($filepath);
29 29
         }
30 30
     }
Please login to merge, or discard this patch.
packages/testing/src/helpers.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 use Illuminate\Support\Facades\File;
4 4
 
5
-if (! function_exists('unlinkIfExists')) {
5
+if (!function_exists('unlinkIfExists')) {
6 6
     function unlinkIfExists(string $filepath): void
7 7
     {
8 8
         if (file_exists($filepath)) {
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     }
12 12
 }
13 13
 
14
-if (! function_exists('backupDirectory')) {
14
+if (!function_exists('backupDirectory')) {
15 15
     function backupDirectory(string $directory): void
16 16
     {
17 17
         if (file_exists($directory)) {
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     }
21 21
 }
22 22
 
23
-if (! function_exists('restoreDirectory')) {
23
+if (!function_exists('restoreDirectory')) {
24 24
     function restoreDirectory(string $directory): void
25 25
     {
26 26
         if (file_exists($directory.'-bak')) {
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 }
32 32
 
33
-if (! function_exists('deleteDirectory')) {
33
+if (!function_exists('deleteDirectory')) {
34 34
     function deleteDirectory(string $directory): void
35 35
     {
36 36
         if (file_exists($directory)) {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     }
40 40
 }
41 41
 
42
-if (! function_exists('makeDirectory')) {
42
+if (!function_exists('makeDirectory')) {
43 43
     function makeDirectory(string $directory): void
44 44
     {
45 45
         if (file_exists($directory)) {
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     }
49 49
 }
50 50
 
51
-if (! function_exists('unlinkUnlessDefault')) {
51
+if (!function_exists('unlinkUnlessDefault')) {
52 52
     function unlinkUnlessDefault(string $filepath): void
53 53
     {
54 54
         $protected = [
@@ -58,13 +58,13 @@  discard block
 block discarded – undo
58 58
             '.gitkeep',
59 59
         ];
60 60
 
61
-        if (! in_array(basename($filepath), $protected)) {
61
+        if (!in_array(basename($filepath), $protected)) {
62 62
             unlink($filepath);
63 63
         }
64 64
     }
65 65
 }
66 66
 
67
-if (! function_exists('strip_newlines')) {
67
+if (!function_exists('strip_newlines')) {
68 68
     function strip_newlines(string $string, bool $keepUnixEndings = false): string
69 69
     {
70 70
         if ($keepUnixEndings) {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 }
77 77
 
78
-if (! function_exists('strip_indentation')) {
78
+if (!function_exists('strip_indentation')) {
79 79
     function strip_indentation(string $string, bool $indentUsingSpaces = true, int $indentationLength = 4): string
80 80
     {
81 81
         $indentation = $indentUsingSpaces ? str_repeat(' ', $indentationLength) : "\t";
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     }
85 85
 }
86 86
 
87
-if (! function_exists('strip_newlines_and_indentation')) {
87
+if (!function_exists('strip_newlines_and_indentation')) {
88 88
     function strip_newlines_and_indentation(string $string, bool $indentUsingSpaces = true, int $indentationLength = 4): string
89 89
     {
90 90
         return strip_newlines(strip_indentation($string, $indentUsingSpaces, $indentationLength));
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
-        Router::getRoutes(DocumentationPage::class)->each(function (Route $route): void {
21
+        Router::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/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.