Passed
Push — master ( 67a175...8a4bfa )
by Caen
03:15 queued 12s
created
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/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($identifier);
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/framework/src/Framework/Features/Paginator.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
     public function previousPageNumber(): false|int
132 132
     {
133
-        if (! $this->canNavigateBack()) {
133
+        if (!$this->canNavigateBack()) {
134 134
             return false;
135 135
         }
136 136
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 
140 140
     public function nextPageNumber(): false|int
141 141
     {
142
-        if (! $this->canNavigateForward()) {
142
+        if (!$this->canNavigateForward()) {
143 143
             return false;
144 144
         }
145 145
 
@@ -148,11 +148,11 @@  discard block
 block discarded – undo
148 148
 
149 149
     public function previous(): false|string|Route
150 150
     {
151
-        if (! $this->canNavigateBack()) {
151
+        if (!$this->canNavigateBack()) {
152 152
             return false;
153 153
         }
154 154
 
155
-        if (! isset($this->routeBasename)) {
155
+        if (!isset($this->routeBasename)) {
156 156
             return $this->formatLink(-1);
157 157
         }
158 158
 
@@ -161,11 +161,11 @@  discard block
 block discarded – undo
161 161
 
162 162
     public function next(): false|string|Route
163 163
     {
164
-        if (! $this->canNavigateForward()) {
164
+        if (!$this->canNavigateForward()) {
165 165
             return false;
166 166
         }
167 167
 
168
-        if (! isset($this->routeBasename)) {
168
+        if (!isset($this->routeBasename)) {
169 169
             return $this->formatLink(+1);
170 170
         }
171 171
 
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 (string $line): string {
55
+        $this->output = implode("\n", array_map(function(string $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 (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.
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.