Passed
Push — master ( 4611f7...b346c1 )
by Caen
03:26 queued 13s
created
packages/framework/src/Foundation/FileCollection.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 function getSourceFiles(?string $pageClass = null): self
36 36
     {
37
-        return ! $pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass);
37
+        return !$pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass);
38 38
     }
39 39
 
40 40
     /**
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     {
93 93
         // Scan the source directory, and directories therein, for files that match the model's file extension.
94 94
         foreach (glob($this->kernel->path($pageClass::sourcePath('{*,**/*}')), GLOB_BRACE) as $filepath) {
95
-            if (! str_starts_with(basename((string) $filepath), '_')) {
95
+            if (!str_starts_with(basename((string) $filepath), '_')) {
96 96
                 $this->put($this->kernel->pathToRelative($filepath), SourceFile::make($filepath, $pageClass));
97 97
             }
98 98
         }
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 FileCollection::getSourceFiles($model)->flatten()->map(function (SourceFile $file) use ($model): string {
77
+        return FileCollection::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/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.
packages/framework/src/Markdown/Processing/ShortcodeProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 
53 53
     public function processInput(): static
54 54
     {
55
-        $this->output = implode("\n", array_map(function ($line): string {
55
+        $this->output = implode("\n", array_map(function($line): string {
56 56
             return $this->expandShortcode($line);
57 57
         }, explode("\n", $this->input)));
58 58
 
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 ($line): string {
37
+        return implode("\n", array_map(function($line): string {
38 38
             return str_starts_with(strtolower($line), strtolower('[Blade]:'))
39 39
                 ? '<!-- HYDE'.trim(htmlentities($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 ($line): string {
57
+        $this->output = implode("\n", array_map(function($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/Foundation/RouteCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 {
39 39
     public function getRoutes(?string $pageClass = null): self
40 40
     {
41
-        return ! $pageClass ? $this : $this->filter(function (Route $route) use ($pageClass): bool {
41
+        return !$pageClass ? $this : $this->filter(function(Route $route) use ($pageClass) : bool {
42 42
             return $route->getPage() instanceof $pageClass;
43 43
         });
44 44
     }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
     protected function runDiscovery(): self
67 67
     {
68
-        $this->kernel->pages()->each(function (HydePage $page): void {
68
+        $this->kernel->pages()->each(function(HydePage $page): void {
69 69
             $this->discover($page);
70 70
         });
71 71
 
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 ($value, $key): string {
38
+        return sprintf(' %s', collect($this->attr)->map(function($value, $key): string {
39 39
             return e($key).'="'.e($value).'"';
40 40
         })->implode(' '));
41 41
     }
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.