Passed
Branch master (0511c6)
by Caen
03:10
created
packages/testing/src/ResetsApplication.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             '.gitkeep',
67 67
         ];
68 68
 
69
-        if (! in_array(basename($filepath), $protected)) {
69
+        if (!in_array(basename($filepath), $protected)) {
70 70
             unlink($filepath);
71 71
         }
72 72
     }
Please login to merge, or discard this patch.
packages/testing/src/CreatesTemporaryFiles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
         if (sizeof($this->fileMemory) > 0) {
52 52
             foreach ($this->fileMemory as $file) {
53 53
                 if (Filesystem::isDirectory($file)) {
54
-                    if (! in_array($file, ['_site', '_media', '_pages', '_posts', '_docs', 'app', 'config', 'storage', 'vendor', 'node_modules'])) {
54
+                    if (!in_array($file, ['_site', '_media', '_pages', '_posts', '_docs', 'app', 'config', 'storage', 'vendor', 'node_modules'])) {
55 55
                         Filesystem::deleteDirectory($file);
56 56
                     }
57 57
                 } else {
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use Rector\Set\ValueObject\SetList;
8 8
 use RectorLaravel\Set\LaravelSetList;
9 9
 
10
-return static function (RectorConfig $rectorConfig): void {
10
+return static function(RectorConfig $rectorConfig): void {
11 11
     $rectorConfig->paths([__DIR__.'/packages/framework/src']);
12 12
     $rectorConfig->sets([
13 13
         LaravelSetList::LARAVEL_90,
Please login to merge, or discard this patch.
packages/framework/src/Markdown/Processing/BladeDownProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public static function preprocess(string $markdown): string
36 36
     {
37
-        return implode("\n", array_map(function (string $line): string {
37
+        return implode("\n", array_map(function(string $line): string {
38 38
             return str_starts_with(strtolower($line), strtolower('[Blade]:'))
39 39
                 ? '<!-- HYDE'.trim(e($line)).' -->'
40 40
                 : $line;
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     public function run(): static
56 56
     {
57
-        $this->output = implode("\n", array_map(function (string $line): string {
57
+        $this->output = implode("\n", array_map(function(string $line): string {
58 58
             return $this->lineStartsWithDirective($line)
59 59
                 ? $this->processLine($line)
60 60
                 : $line;
Please login to merge, or discard this patch.
packages/framework/src/Framework/Features/Metadata/Elements/LinkElement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
             return '';
36 36
         }
37 37
 
38
-        return sprintf(' %s', collect($this->attr)->map(function (string $value, string $key): string {
38
+        return sprintf(' %s', collect($this->attr)->map(function(string $value, string $key): string {
39 39
             return e($key).'="'.e($value).'"';
40 40
         })->implode(' '));
41 41
     }
Please login to merge, or discard this patch.
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.
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/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.