Passed
Push — master ( 1a2e13...9a4f72 )
by Caen
03:32 queued 13s
created
packages/framework/src/Console/Commands/ChangeSourceDirectoryCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             throw new InvalidArgumentException('A file already exists at this path!');
95 95
         }
96 96
 
97
-        if (Filesystem::isDirectory($name) && ! Filesystem::isEmptyDirectory($name)) {
97
+        if (Filesystem::isDirectory($name) && !Filesystem::isEmptyDirectory($name)) {
98 98
             // If any of the subdirectories we want to move already exist, we need to abort as we don't want to overwrite any existing files
99 99
             // The reason we check these individually is mainly so that the change can be reverted (by setting the $name to '/')
100 100
             foreach ($this->getPageDirectories() as $directory) {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
     protected function directoryContainsFiles(string $subdirectory): bool
115 115
     {
116
-        return Filesystem::isDirectory($subdirectory) && ! Filesystem::isEmptyDirectory($subdirectory);
116
+        return Filesystem::isDirectory($subdirectory) && !Filesystem::isEmptyDirectory($subdirectory);
117 117
     }
118 118
 
119 119
     protected function updateConfigurationFile(string $newDirectoryName, string $currentDirectoryName): void
Please login to merge, or discard this patch.
packages/framework/src/Console/Commands/PublishHomepageCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $selected = $this->parseSelection();
58 58
 
59
-        if (! $this->canExistingFileBeOverwritten()) {
59
+        if (!$this->canExistingFileBeOverwritten()) {
60 60
             $this->error('A modified index.blade.php file already exists. Use --force to overwrite.');
61 61
 
62 62
             return 409;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         Artisan::call('vendor:publish', [
68 68
             '--tag' => $this->options[$selected]['group'] ?? $selected,
69 69
             '--force' => true, // Todo add force state dynamically depending on existing file state
70
-        ], ! $tagExists ? $this->output : null);
70
+        ], !$tagExists ? $this->output : null);
71 71
 
72 72
         if ($tagExists) {
73 73
             $this->infoComment("Published page [$selected]");
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     protected function formatPublishableChoices(): array
96 96
     {
97
-        return $this->getTemplateOptions()->map(function (array $option, string $key): string {
97
+        return $this->getTemplateOptions()->map(function(array $option, string $key): string {
98 98
             return  "<comment>$key</comment>: {$option['description']}";
99 99
         })->values()->toArray();
100 100
     }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             return true;
116 116
         }
117 117
 
118
-        if (! file_exists(Hyde::getBladePagePath('index.blade.php'))) {
118
+        if (!file_exists(Hyde::getBladePagePath('index.blade.php'))) {
119 119
             return true;
120 120
         }
121 121
 
Please login to merge, or discard this patch.
framework/src/Framework/Concerns/Internal/ForwardsIlluminateFilesystem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     protected static function qualifyArguments(array $parameterNames, array $arguments): Collection
88 88
     {
89
-        return collect($arguments)->mapWithKeys(function (string|array|int|bool $argumentValue, int|string $key) use ($parameterNames): string|array|int|bool {
89
+        return collect($arguments)->mapWithKeys(function(string|array|int|bool $argumentValue, int|string $key) use ($parameterNames): string|array|int|bool {
90 90
             $argumentsToQualify = [
91 91
                 'path', 'paths', 'file', 'target', 'directory', 'destination', 'firstFile', 'secondFile',
92 92
                 'pattern', 'link', 'from', 'to',
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     protected static function qualifyPathArgument(array|string $path): string|array
109 109
     {
110 110
         return is_array($path)
111
-            ? array_map(fn (string $path): string => self::qualifyPathArgument($path), $path)
111
+            ? array_map(fn (string $path) : string => self::qualifyPathArgument($path), $path)
112 112
             : self::absolutePath($path);
113 113
     }
114 114
 }
Please login to merge, or discard this patch.
packages/framework/src/Console/Commands/RebuildStaticPageCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,11 +89,11 @@
 block discarded – undo
89 89
                     Hyde::pathToRelative(Hyde::getDocumentationPagePath()),
90 90
                 ];
91 91
 
92
-                if (! in_array($directory, $directories)) {
92
+                if (!in_array($directory, $directories)) {
93 93
                     throw new Exception("Path [$this->path] is not in a valid source directory.", 400);
94 94
                 }
95 95
 
96
-                if (! file_exists(Hyde::path($this->path))) {
96
+                if (!file_exists(Hyde::path($this->path))) {
97 97
                     throw new Exception("File [$this->path] not found.", 404);
98 98
                 }
99 99
             }
Please login to merge, or discard this patch.
framework/src/Framework/Features/Documentation/DocumentationSearchPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     public static function enabled(): bool
35 35
     {
36
-        return config('docs.create_search_page', true) && ! Hyde::routes()->has(self::routeKey());
36
+        return config('docs.create_search_page', true) && !Hyde::routes()->has(self::routeKey());
37 37
     }
38 38
 
39 39
     public static function generate(): string
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(DocumentationPage::homeRouteName());
84
+            $item->getRoute()?->getPage() instanceof DocumentationPage && !$item->getRoute()->is(DocumentationPage::homeRouteName());
85 85
     }
86 86
 }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Services/DiscoveryService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,11 +70,11 @@
 block discarded – undo
70 70
      */
71 71
     public static function getSourceFileListForModel(string $model): array
72 72
     {
73
-        if (! class_exists($model) || ! is_subclass_of($model, HydePage::class)) {
73
+        if (!class_exists($model) || !is_subclass_of($model, HydePage::class)) {
74 74
             throw new UnsupportedPageTypeException($model);
75 75
         }
76 76
 
77
-        return Files::getSourceFiles($model)->flatten()->map(function (SourceFile $file) use ($model): string {
77
+        return Files::getSourceFiles($model)->flatten()->map(function(SourceFile $file) use ($model): string {
78 78
             return static::pathToIdentifier($model, $file->withoutDirectoryPrefix());
79 79
         })->toArray();
80 80
     }
Please login to merge, or discard this patch.
packages/framework/src/Console/ConsoleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             Commands\ChangeSourceDirectoryCommand::class,
39 39
         ]);
40 40
 
41
-        Artisan::starting(function (Artisan $artisan): void {
41
+        Artisan::starting(function(Artisan $artisan): void {
42 42
             $artisan->setName(self::logo());
43 43
         });
44 44
     }
Please login to merge, or discard this patch.
packages/framework/src/Foundation/ConsoleKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         // the default LoadConfiguration bootstrapper class with our implementation.
24 24
         // We do this by swapping out the LoadConfiguration class with our own.
25 25
 
26
-        return array_values(tap(array_combine($bootstrappers, $bootstrappers), function (array &$array): void {
26
+        return array_values(tap(array_combine($bootstrappers, $bootstrappers), function(array &$array): void {
27 27
             $array[\LaravelZero\Framework\Bootstrap\LoadConfiguration::class] = \Hyde\Foundation\Internal\LoadConfiguration::class;
28 28
         }));
29 29
     }
Please login to merge, or discard this patch.