@@ -84,14 +84,14 @@ |
||
84 | 84 | $command = is_string($command) ? $command : 'command:name'; |
85 | 85 | $type = is_string($type) ? $type : 'basic'; |
86 | 86 | |
87 | - if (! in_array($type, ['basic', 'generator'], true)) { |
|
87 | + if (!in_array($type, ['basic', 'generator'], true)) { |
|
88 | 88 | // @codeCoverageIgnoreStart |
89 | 89 | $type = $this->choice(lang('CLI.generator.commandType'), ['basic', 'generator'], 'basic'); |
90 | 90 | $this->eol(); |
91 | 91 | // @codeCoverageIgnoreEnd |
92 | 92 | } |
93 | 93 | |
94 | - if (! is_string($group)) { |
|
94 | + if (!is_string($group)) { |
|
95 | 95 | $group = $type === 'generator' ? config('app.name', 'App') . ':Generateurs' : config('app.name', 'App'); |
96 | 96 | } |
97 | 97 |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | collect(static::$data) |
80 | 80 | ->map( |
81 | 81 | static fn ($items) => collect($items) |
82 | - ->map(static function ($value) { |
|
82 | + ->map(static function($value) { |
|
83 | 83 | if (is_array($value)) { |
84 | 84 | return [$value]; |
85 | 85 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | ->all(); |
95 | 95 | })->flatten(1) |
96 | 96 | ) |
97 | - ->sortBy(static function ($data, $key): int { |
|
97 | + ->sortBy(static function($data, $key): int { |
|
98 | 98 | $index = array_search($key, ['Environnement', 'Cache', 'Gestionnaires'], true); |
99 | 99 | |
100 | 100 | return $index === false ? 99 : $index; |
@@ -118,14 +118,14 @@ discard block |
||
118 | 118 | */ |
119 | 119 | protected function displayDetail(Collection $data): void |
120 | 120 | { |
121 | - $data->each(function ($data, $section): void { |
|
121 | + $data->each(function($data, $section): void { |
|
122 | 122 | $this->newLine(); |
123 | 123 | |
124 | 124 | $this->justify($section, '', ['first' => ['fg' => Color::GREEN]]); |
125 | 125 | |
126 | - $data->pipe(static fn ($data) => $section !== 'Environnement' ? $data->sort() : $data)->each(function ($detail): void { |
|
126 | + $data->pipe(static fn ($data) => $section !== 'Environnement' ? $data->sort() : $data)->each(function($detail): void { |
|
127 | 127 | [$label, $value] = $detail; |
128 | - if (! in_array($label, static::$displayed, true)) { |
|
128 | + if (!in_array($label, static::$displayed, true)) { |
|
129 | 129 | $this->justify($label, value($value, false)); |
130 | 130 | static::$displayed[] = $label; |
131 | 131 | } |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | |
180 | 180 | static::addToSection('Gestionnaires', static fn () => array_filter([ |
181 | 181 | 'Cache' => config('cache.handler'), |
182 | - 'Logs' => static function ($json): string { |
|
182 | + 'Logs' => static function($json): string { |
|
183 | 183 | $handlers = []; |
184 | 184 | |
185 | 185 | foreach (config('log.handlers') as $k => $v) { |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | */ |
253 | 253 | public static function format(mixed $value, ?Closure $console = null, ?Closure $json = null) |
254 | 254 | { |
255 | - return static function ($isJson) use ($value, $console, $json) { |
|
255 | + return static function($isJson) use ($value, $console, $json) { |
|
256 | 256 | if ($isJson === true && $json instanceof Closure) { |
257 | 257 | return value($json, $value); |
258 | 258 | } |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | */ |
305 | 305 | final public function success(string $message, bool $badge = true, string $label = 'SUCCESS'): self |
306 | 306 | { |
307 | - if (! $badge) { |
|
307 | + if (!$badge) { |
|
308 | 308 | $this->writer->okBold($label); |
309 | 309 | } else { |
310 | 310 | $this->writer->boldWhiteBgGreen(" {$label} "); |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | */ |
319 | 319 | final public function warning(string $message, bool $badge = true, string $label = 'WARNING'): self |
320 | 320 | { |
321 | - if (! $badge) { |
|
321 | + if (!$badge) { |
|
322 | 322 | $this->writer->warnBold($label); |
323 | 323 | } else { |
324 | 324 | $this->writer->boldWhiteBgYellow(" {$label} "); |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | */ |
333 | 333 | final public function info(string $message, bool $badge = true, string $label = 'INFO'): self |
334 | 334 | { |
335 | - if (! $badge) { |
|
335 | + if (!$badge) { |
|
336 | 336 | $this->writer->infoBold($label); |
337 | 337 | } else { |
338 | 338 | $this->writer->boldWhiteBgCyan(" {$label} "); |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | */ |
347 | 347 | final public function error(string $message, bool $badge = true, string $label = 'ERROR'): self |
348 | 348 | { |
349 | - if (! $badge) { |
|
349 | + if (!$badge) { |
|
350 | 350 | $this->writer->errorBold($label); |
351 | 351 | } else { |
352 | 352 | $this->writer->boldWhiteBgRed(" {$label} "); |
@@ -449,7 +449,7 @@ discard block |
||
449 | 449 | */ |
450 | 450 | final public function json($data): self |
451 | 451 | { |
452 | - $this->write(json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES), true); |
|
452 | + $this->write(json_encode($data, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES), true); |
|
453 | 453 | |
454 | 454 | return $this; |
455 | 455 | } |
@@ -641,8 +641,8 @@ discard block |
||
641 | 641 | */ |
642 | 642 | protected function initProps() |
643 | 643 | { |
644 | - if (! is_cli()) { |
|
645 | - if (! file_exists($ou = TEMP_PATH . 'blitz-cli.txt')) { |
|
644 | + if (!is_cli()) { |
|
645 | + if (!file_exists($ou = TEMP_PATH . 'blitz-cli.txt')) { |
|
646 | 646 | file_put_contents($ou, '', LOCK_EX); |
647 | 647 | } |
648 | 648 |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | // Incluez le fichier routesFile s'il n'existe pas. |
258 | 258 | // Ne conserver que pour les fins BC pour l'instant. |
259 | 259 | $routeFiles = $this->routeFiles; |
260 | - if (! in_array($routesFile, $routeFiles, true)) { |
|
260 | + if (!in_array($routesFile, $routeFiles, true)) { |
|
261 | 261 | $routeFiles[] = $routesFile; |
262 | 262 | } |
263 | 263 | |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | $routes = $this; |
266 | 266 | |
267 | 267 | foreach ($routeFiles as $routesFile) { |
268 | - if (! is_file($routesFile)) { |
|
268 | + if (!is_file($routesFile)) { |
|
269 | 269 | logger()->warning(sprintf('Fichier de route introuvable : "%s"', $routesFile)); |
270 | 270 | |
271 | 271 | continue; |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | */ |
315 | 315 | public function placeholder(array|string $placeholder, ?string $pattern = null): self |
316 | 316 | { |
317 | - if (! is_array($placeholder)) { |
|
317 | + if (!is_array($placeholder)) { |
|
318 | 318 | $placeholder = [$placeholder => $pattern]; |
319 | 319 | } |
320 | 320 | |
@@ -1026,7 +1026,7 @@ discard block |
||
1026 | 1026 | * |
1027 | 1027 | * @param array|(Closure(mixed...): (ResponseInterface|string|void))|string $to |
1028 | 1028 | */ |
1029 | - public function match(array $verbs = [], string $from = '', $to = '', ?array $options = null): self |
|
1029 | + public function match(array $verbs = [], string $from = '', $to = '', ?array $options = null) : self |
|
1030 | 1030 | { |
1031 | 1031 | if ($from === '' || empty($to)) { |
1032 | 1032 | throw new InvalidArgumentException('Vous devez fournir les paramètres : $from, $to.'); |
@@ -1211,8 +1211,8 @@ discard block |
||
1211 | 1211 | // Ajoutez l'espace de noms par défaut si nécessaire. |
1212 | 1212 | $namespace = trim($this->defaultNamespace, '\\') . '\\'; |
1213 | 1213 | if ( |
1214 | - ! str_starts_with($search, '\\') |
|
1215 | - && ! str_starts_with($search, $namespace) |
|
1214 | + !str_starts_with($search, '\\') |
|
1215 | + && !str_starts_with($search, $namespace) |
|
1216 | 1216 | ) { |
1217 | 1217 | $search = $namespace . $search; |
1218 | 1218 | } |
@@ -1225,7 +1225,7 @@ discard block |
||
1225 | 1225 | $from = $route['from']; |
1226 | 1226 | |
1227 | 1227 | // on ignore les closures |
1228 | - if (! is_string($to)) { |
|
1228 | + if (!is_string($to)) { |
|
1229 | 1229 | continue; |
1230 | 1230 | } |
1231 | 1231 | |
@@ -1236,7 +1236,7 @@ discard block |
||
1236 | 1236 | |
1237 | 1237 | // S'il y a une chance de correspondance, alors ce sera |
1238 | 1238 | // soit avec $search au début de la chaîne $to. |
1239 | - if (! str_starts_with($to, $search)) { |
|
1239 | + if (!str_starts_with($to, $search)) { |
|
1240 | 1240 | continue; |
1241 | 1241 | } |
1242 | 1242 | |
@@ -1316,7 +1316,7 @@ discard block |
||
1316 | 1316 | |
1317 | 1317 | // Construisez notre chaîne résultante, en insérant les $params aux endroits appropriés. |
1318 | 1318 | foreach ($matches[0] as $index => $placeholder) { |
1319 | - if (! isset($params[$index])) { |
|
1319 | + if (!isset($params[$index])) { |
|
1320 | 1320 | throw new InvalidArgumentException( |
1321 | 1321 | 'Argument manquant pour "' . $placeholder . '" dans la route "' . $from . '".' |
1322 | 1322 | ); |
@@ -1327,7 +1327,7 @@ discard block |
||
1327 | 1327 | // ou peut-être que $placeholder n'est pas un espace réservé, mais une regex. |
1328 | 1328 | $pattern = $this->placeholders[$placeholderName] ?? $placeholder; |
1329 | 1329 | |
1330 | - if (! preg_match('#^' . $pattern . '$#u', (string) $params[$index])) { |
|
1330 | + if (!preg_match('#^' . $pattern . '$#u', (string) $params[$index])) { |
|
1331 | 1331 | throw RouterException::invalidParameterType(); |
1332 | 1332 | } |
1333 | 1333 | |
@@ -1388,7 +1388,7 @@ discard block |
||
1388 | 1388 | $from = trim($from, '/'); |
1389 | 1389 | } |
1390 | 1390 | |
1391 | - if (is_string($to) && ! str_contains($to, '::') && class_exists($to) && method_exists($to, '__invoke')) { |
|
1391 | + if (is_string($to) && !str_contains($to, '::') && class_exists($to) && method_exists($to, '__invoke')) { |
|
1392 | 1392 | $to = [$to, '__invoke']; |
1393 | 1393 | } |
1394 | 1394 | |
@@ -1402,7 +1402,7 @@ discard block |
||
1402 | 1402 | if (isset($options['middleware'])) { |
1403 | 1403 | $options['middleware'] = (array) $options['middleware']; |
1404 | 1404 | |
1405 | - if (! isset($options['middlewares'])) { |
|
1405 | + if (!isset($options['middlewares'])) { |
|
1406 | 1406 | $options['middlewares'] = $options['middleware']; |
1407 | 1407 | } else { |
1408 | 1408 | $options['middlewares'] = array_merge($options['middlewares'], $options['middleware']); |
@@ -1430,9 +1430,9 @@ discard block |
||
1430 | 1430 | } |
1431 | 1431 | |
1432 | 1432 | // Limitation du nom d'hôte ? |
1433 | - if (! empty($options['hostname'])) { |
|
1433 | + if (!empty($options['hostname'])) { |
|
1434 | 1434 | // @todo déterminer s'il existe un moyen de mettre les hôtes sur liste blanche ? |
1435 | - if (! $this->checkHostname($options['hostname'])) { |
|
1435 | + if (!$this->checkHostname($options['hostname'])) { |
|
1436 | 1436 | return; |
1437 | 1437 | } |
1438 | 1438 | |
@@ -1440,10 +1440,10 @@ discard block |
||
1440 | 1440 | } |
1441 | 1441 | |
1442 | 1442 | // Limitation du nom sous-domaine ? |
1443 | - elseif (! empty($options['subdomain'])) { |
|
1443 | + elseif (!empty($options['subdomain'])) { |
|
1444 | 1444 | // Si nous ne correspondons pas au sous-domaine actuel, alors |
1445 | 1445 | // nous n'avons pas besoin d'ajouter la route. |
1446 | - if (! $this->checkSubdomains($options['subdomain'])) { |
|
1446 | + if (!$this->checkSubdomains($options['subdomain'])) { |
|
1447 | 1447 | return; |
1448 | 1448 | } |
1449 | 1449 | |
@@ -1476,9 +1476,9 @@ discard block |
||
1476 | 1476 | } |
1477 | 1477 | |
1478 | 1478 | // S'il s'agit d'une redirection, aucun traitement |
1479 | - if (! isset($options['redirect']) && is_string($to)) { |
|
1479 | + if (!isset($options['redirect']) && is_string($to)) { |
|
1480 | 1480 | // Si aucun espace de noms n'est trouvé, ajouter l'espace de noms par défaut |
1481 | - if (! str_contains($to, '\\') || strpos($to, '\\') > 0) { |
|
1481 | + if (!str_contains($to, '\\') || strpos($to, '\\') > 0) { |
|
1482 | 1482 | $namespace = $options['namespace'] ?? $this->defaultNamespace; |
1483 | 1483 | $to = trim($namespace, '\\') . '\\' . $to; |
1484 | 1484 | } |
@@ -1495,7 +1495,7 @@ discard block |
||
1495 | 1495 | // cela ne fonctionne que parce que les routes découvertes sont ajoutées juste avant |
1496 | 1496 | // pour tenter de router la requête. |
1497 | 1497 | $routeKeyExists = isset($this->routes[$verb][$routeKey]); |
1498 | - if ((isset($this->routesNames[$verb][$name]) || $routeKeyExists) && ! $overwrite) { |
|
1498 | + if ((isset($this->routesNames[$verb][$name]) || $routeKeyExists) && !$overwrite) { |
|
1499 | 1499 | return; |
1500 | 1500 | } |
1501 | 1501 | |
@@ -1521,7 +1521,7 @@ discard block |
||
1521 | 1521 | private function checkHostname(array|string $hostname): bool |
1522 | 1522 | { |
1523 | 1523 | // Les appels CLI ne peuvent pas être sur le nom d'hôte. |
1524 | - if (! isset($this->httpHost)) { |
|
1524 | + if (!isset($this->httpHost)) { |
|
1525 | 1525 | return false; |
1526 | 1526 | } |
1527 | 1527 | |
@@ -1544,7 +1544,7 @@ discard block |
||
1544 | 1544 | private function checkSubdomains($subdomains): bool |
1545 | 1545 | { |
1546 | 1546 | // Les appels CLI ne peuvent pas être sur le sous-domaine. |
1547 | - if (! isset($this->httpHost)) { |
|
1547 | + if (!isset($this->httpHost)) { |
|
1548 | 1548 | return false; |
1549 | 1549 | } |
1550 | 1550 | |
@@ -1552,13 +1552,13 @@ discard block |
||
1552 | 1552 | $this->currentSubdomain = $this->determineCurrentSubdomain(); |
1553 | 1553 | } |
1554 | 1554 | |
1555 | - if (! is_array($subdomains)) { |
|
1555 | + if (!is_array($subdomains)) { |
|
1556 | 1556 | $subdomains = [$subdomains]; |
1557 | 1557 | } |
1558 | 1558 | |
1559 | 1559 | // Les routes peuvent être limitées à n'importe quel sous-domaine. Dans ce cas, cependant, |
1560 | 1560 | // il nécessite la présence d'un sous-domaine. |
1561 | - if (! empty($this->currentSubdomain) && in_array('*', $subdomains, true)) { |
|
1561 | + if (!empty($this->currentSubdomain) && in_array('*', $subdomains, true)) { |
|
1562 | 1562 | return true; |
1563 | 1563 | } |
1564 | 1564 | |
@@ -1580,7 +1580,7 @@ discard block |
||
1580 | 1580 | // sur l'URL sinon parse_url sera mal interprété |
1581 | 1581 | // 'hôte' comme 'chemin'. |
1582 | 1582 | $url = $this->httpHost; |
1583 | - if (! str_starts_with($url, 'http')) { |
|
1583 | + if (!str_starts_with($url, 'http')) { |
|
1584 | 1584 | $url = 'http://' . $url; |
1585 | 1585 | } |
1586 | 1586 | |
@@ -1624,7 +1624,7 @@ discard block |
||
1624 | 1624 | */ |
1625 | 1625 | private function getControllerName(Closure|string $handler): ?string |
1626 | 1626 | { |
1627 | - if (! is_string($handler)) { |
|
1627 | + if (!is_string($handler)) { |
|
1628 | 1628 | return null; |
1629 | 1629 | } |
1630 | 1630 | |
@@ -1683,12 +1683,12 @@ discard block |
||
1683 | 1683 | */ |
1684 | 1684 | private function replaceLocale(string $route, ?string $locale = null): string |
1685 | 1685 | { |
1686 | - if (! str_contains($route, '{locale}')) { |
|
1686 | + if (!str_contains($route, '{locale}')) { |
|
1687 | 1687 | return $route; |
1688 | 1688 | } |
1689 | 1689 | |
1690 | 1690 | // Vérifier les paramètres régionaux non valides |
1691 | - if ($locale !== null && ! in_array($locale, config('app.supported_locales'), true)) { |
|
1691 | + if ($locale !== null && !in_array($locale, config('app.supported_locales'), true)) { |
|
1692 | 1692 | $locale = null; |
1693 | 1693 | } |
1694 | 1694 |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | if (is_string($optionLocale)) { |
67 | - if (! in_array($optionLocale, config('app.supported_locales'), true)) { |
|
67 | + if (!in_array($optionLocale, config('app.supported_locales'), true)) { |
|
68 | 68 | $this->error( |
69 | 69 | 'Erreur: "' . $optionLocale . '" n\'est pas supporté. Les langues supportées sont: ' |
70 | 70 | . implode(', ', config('app.supported_locales')) |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | $this->table($table); |
159 | 159 | } |
160 | 160 | |
161 | - if (! $this->showNew && $countNewKeys > 0) { |
|
161 | + if (!$this->showNew && $countNewKeys > 0) { |
|
162 | 162 | $this->writer->bgRed('Note: Vous devez utiliser votre outil de linting pour résoudre les problèmes liés aux normes de codage.'); |
163 | 163 | } |
164 | 164 |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | public function send(Mail $mail): bool |
194 | 194 | { |
195 | 195 | foreach ($this->bcc() as $key => $value) { |
196 | - if (empty($value) || ! is_string($value)) { |
|
196 | + if (empty($value) || !is_string($value)) { |
|
197 | 197 | continue; |
198 | 198 | } |
199 | 199 | |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | } |
206 | 206 | |
207 | 207 | foreach ($this->cc() as $key => $value) { |
208 | - if (empty($value) || ! is_string($value)) { |
|
208 | + if (empty($value) || !is_string($value)) { |
|
209 | 209 | continue; |
210 | 210 | } |
211 | 211 | |
@@ -218,12 +218,12 @@ discard block |
||
218 | 218 | |
219 | 219 | $content = $this->content(); |
220 | 220 | |
221 | - if (! empty($content['view'])) { |
|
221 | + if (!empty($content['view'])) { |
|
222 | 222 | $mail->view($content['view'], $this->data()); |
223 | - } elseif (! empty($content['html'])) { |
|
223 | + } elseif (!empty($content['html'])) { |
|
224 | 224 | $mail->html($content['html']); |
225 | 225 | } |
226 | - if (! empty($content['text'])) { |
|
226 | + if (!empty($content['text'])) { |
|
227 | 227 | $mail->text($content['text']); |
228 | 228 | } |
229 | 229 | |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | $mail->priority($this->priority()); |
233 | 233 | |
234 | 234 | foreach ($this->replyTo() as $key => $value) { |
235 | - if (empty($value) || ! is_string($value)) { |
|
235 | + if (empty($value) || !is_string($value)) { |
|
236 | 236 | continue; |
237 | 237 | } |
238 | 238 | |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | $mail->subject($this->subject()); |
247 | 247 | |
248 | 248 | foreach ($this->to() as $key => $value) { |
249 | - if (empty($value) || ! is_string($value)) { |
|
249 | + if (empty($value) || !is_string($value)) { |
|
250 | 250 | continue; |
251 | 251 | } |
252 | 252 |