Test Failed
Push — main ( 50345c...6e4288 )
by Dimitri
02:47
created
src/Cli/Traits/GeneratorTrait.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
             // @codeCoverageIgnoreStart
121 121
             $this->colorize(lang('CLI.generator.usingBlitzNamespace'), 'yellow');
122 122
 
123
-            if (! $this->confirm('Are you sure you want to continue?')) {
123
+            if (!$this->confirm('Are you sure you want to continue?')) {
124 124
                 $this->eol()->colorize(lang('CLI.generator.cancelOperation'), 'yellow');
125 125
 
126 126
                 return;
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 
135 135
         // Écraser des fichiers sans le savoir est une gêne sérieuse, nous allons donc vérifier si nous dupliquons des choses,
136 136
         // si l'option "forcer" n'est pas fournie, nous renvoyons.
137
-        if (! $this->option('force') && $isFile) {
137
+        if (!$this->option('force') && $isFile) {
138 138
             $this->io->error(lang('CLI.generator.fileExist', [clean_path($target)]), true);
139 139
 
140 140
             return;
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
         // Vérifie si le répertoire pour enregistrer le fichier existe.
144 144
         $dir = dirname($target);
145 145
 
146
-        if (! is_dir($dir)) {
146
+        if (!is_dir($dir)) {
147 147
             mkdir($dir, 0o755, true);
148 148
         }
149 149
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
         // Construisez la classe en fonction des détails dont nous disposons.
153 153
         // Nous obtiendrons le contenu de notre fichier à partir du modèle,
154 154
         // puis nous effectuerons les remplacements nécessaires.
155
-        if (! write_file($target, $content)) {
155
+        if (!write_file($target, $content)) {
156 156
             // @codeCoverageIgnoreStart
157 157
             $this->io->error(lang('CLI.generator.fileError', [clean_path($target)]), true);
158 158
 
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
             $class = $matches[1] . ucfirst($matches[2]);
227 227
         }
228 228
 
229
-        if ($this->enabledSuffixing && $this->getOption('suffix') && ! strripos($class, $component)) {
229
+        if ($this->enabledSuffixing && $this->getOption('suffix') && !strripos($class, $component)) {
230 230
             $class .= ucfirst($component);
231 231
         }
232 232
 
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 
298 298
         $base = Services::autoloader()->getNamespace($namespace);
299 299
 
300
-        if (! $base = reset($base)) {
300
+        if (!$base = reset($base)) {
301 301
             $this->io->error(lang('CLI.namespaceNotDefined', [$namespace]), true);
302 302
 
303 303
             return '';
Please login to merge, or discard this patch.
src/Cli/Traits/ContentReplacer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,14 +66,14 @@
 block discarded – undo
66 66
 
67 67
         $directory = dirname($path);
68 68
 
69
-        if (! is_dir($directory)) {
69
+        if (!is_dir($directory)) {
70 70
             mkdir($directory, 0o777, true);
71 71
         }
72 72
 
73 73
         if (file_exists($path)) {
74 74
             $overwrite = (bool) $this->option('f');
75 75
 
76
-            if (! $overwrite && ! $this->confirm("Le fichier '{$cleanPath}' existe déjà dans la destination. Le remplacé?")) {
76
+            if (!$overwrite && !$this->confirm("Le fichier '{$cleanPath}' existe déjà dans la destination. Le remplacé?")) {
77 77
                 $this->error("{$cleanPath} sauté. Si vous souhaitez le remplacer, s'il vous plaît utiliser l'option '-f' ou répondre 'y' à l'invite.")->eol();
78 78
 
79 79
                 return;
Please login to merge, or discard this patch.
src/Mail/Mail.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      */
112 112
     protected function factory(): AbstractAdapter
113 113
     {
114
-        if (! empty($this->adapter)) {
114
+        if (!empty($this->adapter)) {
115 115
             return $this->adapter;
116 116
         }
117 117
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             $handler = static::$validHandlers[$handler];
126 126
         }
127 127
 
128
-        if (! class_exists($handler)) {
128
+        if (!class_exists($handler)) {
129 129
             throw new InvalidArgumentException(lang('Mail.invalidHandler', [$handler]));
130 130
         }
131 131
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
             $debug = on_dev();
135 135
         }
136 136
 
137
-        if (! is_subclass_of($handler, AbstractAdapter::class)) {
137
+        if (!is_subclass_of($handler, AbstractAdapter::class)) {
138 138
             throw new InvalidArgumentException(lang('Mail.handlerMustExtendClass', [$handler, AbstractAdapter::class]));
139 139
         }
140 140
 
@@ -340,15 +340,15 @@  discard block
 block discarded – undo
340 340
         $path = '';
341 341
 
342 342
         // N'est-il pas namespaced ? on cherche le dossier en fonction du parametre "view_base"
343
-        if (! str_contains($view, '\\')) {
343
+        if (!str_contains($view, '\\')) {
344 344
             $path = $this->config['view_dir'] ?? '';
345
-            if (! empty($path)) {
345
+            if (!empty($path)) {
346 346
                 $path .= '/';
347 347
             }
348 348
         }
349 349
 
350 350
         $view = view($path . $view, $data);
351
-        if (! empty($this->config['template'])) {
351
+        if (!empty($this->config['template'])) {
352 352
             $view->setLayout($this->config['template']);
353 353
         }
354 354
 
Please login to merge, or discard this patch.
src/Loader/DotEnv.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
         foreach ($data as $key => $value) {
74 74
             $replacementKey = "\n{$key} = {$value}";
75
-            if (! str_contains($oldFileContents, $key)) {
75
+            if (!str_contains($oldFileContents, $key)) {
76 76
                 if (file_put_contents($this->path, $replacementKey, FILE_APPEND) === false) {
77 77
                     return false;
78 78
                 }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             }
103 103
         }
104 104
 
105
-        if (! count($data)) {
105
+        if (!count($data)) {
106 106
             return false;
107 107
         }
108 108
 
@@ -139,18 +139,18 @@  discard block
 block discarded – undo
139 139
     public function parse(): ?array
140 140
     {
141 141
         // Nous ne voulons pas imposer la présence d'un fichier .env, ils devraient être facultatifs.
142
-        if (! is_file($this->path)) {
142
+        if (!is_file($this->path)) {
143 143
             return null;
144 144
         }
145 145
 
146 146
         // Assurez-vous que le fichier est lisible
147
-        if (! is_readable($this->path)) {
147
+        if (!is_readable($this->path)) {
148 148
             throw new InvalidArgumentException("The .env file is not readable: {$this->path}");
149 149
         }
150 150
 
151 151
         $vars = [];
152 152
 
153
-        $lines = file($this->path, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
153
+        $lines = file($this->path, FILE_IGNORE_NEW_LINES|FILE_SKIP_EMPTY_LINES);
154 154
 
155 155
         foreach ($lines as $line) {
156 156
             // C'est un commentaire?
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      */
176 176
     protected function setVariable(string $name, string $value = '')
177 177
     {
178
-        if (! getenv($name, true)) {
178
+        if (!getenv($name, true)) {
179 179
             putenv("{$name}={$value}");
180 180
         }
181 181
         if (empty($_ENV[$name])) {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
      */
225 225
     protected function sanitizeValue(string $value): string
226 226
     {
227
-        if (! $value) {
227
+        if (!$value) {
228 228
             return $value;
229 229
         }
230 230
 
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 
281 281
             $value = preg_replace_callback(
282 282
                 '/\${([a-zA-Z0-9_]+)}/',
283
-                static function ($matchedPatterns) use ($loader) {
283
+                static function($matchedPatterns) use ($loader) {
284 284
                     $nestedVariable = $loader->getVariable($matchedPatterns[1]);
285 285
 
286 286
                     if (null === $nestedVariable) {
Please login to merge, or discard this patch.
src/Loader/FileLocator.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
         $loader = Services::locator();
40 40
 
41
-        if (! is_array($filenames)) {
41
+        if (!is_array($filenames)) {
42 42
             $filenames = [$filenames];
43 43
         }
44 44
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
                 }
83 83
 
84 84
                 // Les helpers au niveau de l'application doivent remplacer tous les autres
85
-                if (! empty($appHelper)) {
85
+                if (!empty($appHelper)) {
86 86
                     $includes[] = $appHelper;
87 87
                     $loaded[]   = $filename;
88 88
                 }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 $includes = [...$includes, ...$localIncludes];
92 92
 
93 93
                 // Et celui par défaut du système doit être ajouté en dernier.
94
-                if (! empty($systemHelper)) {
94
+                if (!empty($systemHelper)) {
95 95
                     $includes[] = $systemHelper;
96 96
                     $loaded[]   = $filename;
97 97
                 }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 
130 130
         // Si le fichier est dans un espace de noms, nous allons simplement saisir ce fichier et ne pas en rechercher d'autres
131 131
         if (str_contains($name, '\\')) {
132
-            if (! empty($path = $loader->locateFile($name, 'schemas'))) {
132
+            if (!empty($path = $loader->locateFile($name, 'schemas'))) {
133 133
                 $file = $path;
134 134
             }
135 135
         } else {
@@ -147,22 +147,22 @@  discard block
 block discarded – undo
147 147
             }
148 148
 
149 149
             // Les schema des vendor sont prioritaire, ensuite vienne ceux de l'application
150
-            if (! empty($vendorSchema)) {
150
+            if (!empty($vendorSchema)) {
151 151
                 $file = $vendorSchema;
152
-            } elseif (! empty($appSchema)) {
152
+            } elseif (!empty($appSchema)) {
153 153
                 $file = $appSchema;
154
-            } elseif (! empty($systemSchema)) {
154
+            } elseif (!empty($systemSchema)) {
155 155
                 $file = $systemSchema;
156 156
             }
157 157
         }
158 158
 
159
-        if (! empty($file)) {
159
+        if (!empty($file)) {
160 160
             $schema = require $file;
161 161
         } else {
162 162
             $schema = null;
163 163
         }
164 164
 
165
-        if (empty($schema) || ! ($schema instanceof Schema)) {
165
+        if (empty($schema) || !($schema instanceof Schema)) {
166 166
             $schema = Expect::mixed();
167 167
         }
168 168
 
@@ -180,16 +180,16 @@  discard block
 block discarded – undo
180 180
      */
181 181
     public static function model(string $model, ?ConnectionInterface $connection = null)
182 182
     {
183
-        if (! class_exists($model) && ! Text::endsWith($model, 'Model')) {
183
+        if (!class_exists($model) && !Text::endsWith($model, 'Model')) {
184 184
             $model .= 'Model';
185 185
         }
186 186
 
187
-        if (! class_exists($model)) {
187
+        if (!class_exists($model)) {
188 188
             $model = str_replace(APP_NAMESPACE . '\\Models\\', '', $model);
189 189
             $model = APP_NAMESPACE . '\\Models\\' . $model;
190 190
         }
191 191
 
192
-        if (! class_exists($model)) {
192
+        if (!class_exists($model)) {
193 193
             throw LoadException::modelNotFound($model);
194 194
         }
195 195
 
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     protected static function verifyPreferApp(array $options, string $name): bool
219 219
     {
220 220
         // Tout element sans restriction passe
221
-        if (! $options['preferApp']) {
221
+        if (!$options['preferApp']) {
222 222
             return true;
223 223
         }
224 224
 
Please login to merge, or discard this patch.
src/Publisher/Publisher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             // Essayez plusieurs fois en cas de mèches persistantes
128 128
             $attempts = 10;
129 129
 
130
-            while ((bool) $attempts && ! delete_files($directory, true, false, true)) {
130
+            while ((bool) $attempts && !delete_files($directory, true, false, true)) {
131 131
                 // @codeCoverageIgnoreStart
132 132
                 $attempts--;
133 133
                 usleep(100000); // .1s
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
         // Rechercher un fichier existant
468 468
         if (file_exists($to)) {
469 469
             // S'il n'est pas remplacé ou si les fichiers sont identiques, envisagez de réussir
470
-            if (! $replace || same_file($from, $to)) {
470
+            if (!$replace || same_file($from, $to)) {
471 471
                 return;
472 472
             }
473 473
 
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
         }
482 482
 
483 483
         // Assurez-vous que le répertoire existe
484
-        if (! is_dir($directory = pathinfo($to, PATHINFO_DIRNAME))) {
484
+        if (!is_dir($directory = pathinfo($to, PATHINFO_DIRNAME))) {
485 485
             mkdir($directory, 0o775, true);
486 486
         }
487 487
 
Please login to merge, or discard this patch.
src/Http/Redirection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
         // Si cela semble être une URL relative, alors convertissez-la en URL complète
65 65
         // pour une meilleure sécurité.
66
-        if (! str_starts_with($uri, 'http')) {
66
+        if (!str_starts_with($uri, 'http')) {
67 67
             $uri = site_url($uri);
68 68
         }
69 69
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     {
125 125
         $request = $this->generator->getRequest();
126 126
 
127
-        $intended = $request->method() === 'GET' && ! $request->expectsJson()
127
+        $intended = $request->method() === 'GET' && !$request->expectsJson()
128 128
                         ? $this->generator->full()
129 129
                         : $this->generator->previous();
130 130
 
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
             $errors = [$key => $errors];
179 179
         }
180 180
 
181
-        if (! empty($errors)) {
181
+        if (!empty($errors)) {
182 182
             Services::viewer()->share('errors', new ErrorBag($this->session->flashErrors($errors, $key)));
183 183
         }
184 184
 
Please login to merge, or discard this patch.
src/Http/Uri.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -172,11 +172,11 @@  discard block
 block discarded – undo
172 172
 
173 173
         $authority = $this->host;
174 174
 
175
-        if (! empty($this->getUserInfo())) {
175
+        if (!empty($this->getUserInfo())) {
176 176
             $authority = $this->getUserInfo() . '@' . $authority;
177 177
         }
178 178
 
179
-        if (! empty($this->port) && ! $ignorePort) {
179
+        if (!empty($this->port) && !$ignorePort) {
180 180
             // N'ajoute pas de port s'il s'agit d'un port standard pour ce schéma
181 181
             if ($this->port !== $this->defaultPorts[$this->scheme]) {
182 182
                 $authority .= ':' . $this->port;
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     {
196 196
         $userInfo = $this->user;
197 197
 
198
-        if ($this->showPassword === true && ! empty($this->password)) {
198
+        if ($this->showPassword === true && !empty($this->password)) {
199 199
             $userInfo .= ':' . $this->password;
200 200
         }
201 201
 
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
         $vars = $this->query;
246 246
 
247 247
         if (array_key_exists('except', $options)) {
248
-            if (! is_array($options['except'])) {
248
+            if (!is_array($options['except'])) {
249 249
                 $options['except'] = [$options['except']];
250 250
             }
251 251
 
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
         } elseif (array_key_exists('only', $options)) {
256 256
             $temp = [];
257 257
 
258
-            if (! is_array($options['only'])) {
258
+            if (!is_array($options['only'])) {
259 259
                 $options['only'] = [$options['only']];
260 260
             }
261 261
 
@@ -356,11 +356,11 @@  discard block
 block discarded – undo
356 356
     public static function createURIString(?string $scheme = null, ?string $authority = null, ?string $path = null, ?string $query = null, ?string $fragment = null): string
357 357
     {
358 358
         $uri = '';
359
-        if (! empty($scheme)) {
359
+        if (!empty($scheme)) {
360 360
             $uri .= $scheme . '://';
361 361
         }
362 362
 
363
-        if (! empty($authority)) {
363
+        if (!empty($authority)) {
364 364
             $uri .= $authority;
365 365
         }
366 366
 
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
     {
387 387
         $parts = parse_url($str);
388 388
 
389
-        if (empty($parts['host']) && ! empty($parts['path'])) {
389
+        if (empty($parts['host']) && !empty($parts['path'])) {
390 390
             $parts['host'] = $parts['path'];
391 391
             unset($parts['path']);
392 392
         }
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
         }
532 532
 
533 533
         // Ne peut pas avoir de début ?
534
-        if (! empty($query) && str_starts_with($query, '?')) {
534
+        if (!empty($query) && str_starts_with($query, '?')) {
535 535
             $query = substr($query, 1);
536 536
         }
537 537
 
@@ -596,7 +596,7 @@  discard block
 block discarded – undo
596 596
         $temp = [];
597 597
 
598 598
         foreach ($this->query as $key => $value) {
599
-            if (! in_array($key, $params, true)) {
599
+            if (!in_array($key, $params, true)) {
600 600
                 continue;
601 601
             }
602 602
 
@@ -667,19 +667,19 @@  discard block
 block discarded – undo
667 667
      */
668 668
     protected function applyParts(array $parts)
669 669
     {
670
-        if (! empty($parts['host'])) {
670
+        if (!empty($parts['host'])) {
671 671
             $this->host = $parts['host'];
672 672
         }
673
-        if (! empty($parts['user'])) {
673
+        if (!empty($parts['user'])) {
674 674
             $this->user = $parts['user'];
675 675
         }
676
-        if (! empty($parts['path'])) {
676
+        if (!empty($parts['path'])) {
677 677
             $this->path = $this->filterPath($parts['path']);
678 678
         }
679
-        if (! empty($parts['query'])) {
679
+        if (!empty($parts['query'])) {
680 680
             $this->setQuery($parts['query']);
681 681
         }
682
-        if (! empty($parts['fragment'])) {
682
+        if (!empty($parts['fragment'])) {
683 683
             $this->fragment = $parts['fragment'];
684 684
         }
685 685
 
@@ -701,7 +701,7 @@  discard block
 block discarded – undo
701 701
             $this->password = $parts['pass'];
702 702
         }
703 703
 
704
-        if (! empty($parts['path'])) {
704
+        if (!empty($parts['path'])) {
705 705
             $this->segments = explode('/', trim($parts['path'], '/'));
706 706
         }
707 707
     }
@@ -728,7 +728,7 @@  discard block
 block discarded – undo
728 728
         $transformed = clone $relative;
729 729
 
730 730
         // 5.2.2 Transformer les références dans une méthode non stricte (pas de schéma)
731
-        if (! empty($relative->getAuthority())) {
731
+        if (!empty($relative->getAuthority())) {
732 732
             $transformed->setAuthority($relative->getAuthority())
733 733
                 ->setPath($relative->getPath())
734 734
                 ->setQuery($relative->getQuery());
@@ -768,7 +768,7 @@  discard block
 block discarded – undo
768 768
      */
769 769
     protected function mergePaths(self $base, self $reference): string
770 770
     {
771
-        if (! empty($base->getAuthority()) && empty($base->getPath())) {
771
+        if (!empty($base->getAuthority()) && empty($base->getPath())) {
772 772
             return '/' . ltrim($reference->getPath(), '/ ');
773 773
         }
774 774
 
Please login to merge, or discard this patch.
src/Http/UrlGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
     {
256 256
         $route = $this->routes->reverseRoute($name, ...$parameters);
257 257
 
258
-        if (! $route) {
258
+        if (!$route) {
259 259
             throw HttpException::invalidRedirectRoute($route);
260 260
         }
261 261
 
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
      */
333 333
     public function isValidUrl(string $path): bool
334 334
     {
335
-        if (! preg_match('~^(#|//|https?://|(mailto|tel|sms):)~', $path)) {
335
+        if (!preg_match('~^(#|//|https?://|(mailto|tel|sms):)~', $path)) {
336 336
             return filter_var($path, FILTER_VALIDATE_URL) !== false;
337 337
         }
338 338
 
Please login to merge, or discard this patch.