Passed
Push — master ( 3f9407...bd13ac )
by Caen
03:14
created
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.
src/Markdown/Contracts/FrontMatter/SubSchemas/NavigationSchema.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public const NAVIGATION_SCHEMA = [
14 14
         'label'     => 'string',
15 15
         'group'     => 'string', // Category is also supported
16
-        'hidden'    => 'bool',  // Visible is also supported (but obviously invert the value)
17
-        'priority'  => 'int',  // Order is also supported
16
+        'hidden'    => 'bool', // Visible is also supported (but obviously invert the value)
17
+        'priority'  => 'int', // Order is also supported
18 18
     ];
19 19
 }
Please login to merge, or discard this patch.
packages/framework/src/Support/Filesystem/MediaFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
     public function getContentLength(): int
28 28
     {
29
-        if (! is_file($this->path)) {
29
+        if (!is_file($this->path)) {
30 30
             throw new FileNotFoundException(message: "Could not get the content length of file '$this->path'");
31 31
         }
32 32
 
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.
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.