@@ -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 | } |
@@ -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 | |
@@ -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 | |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | if (is_string($optionLocale)) { |
| 68 | - if (! in_array($optionLocale, config('app.supported_locales'), true)) { |
|
| 68 | + if (!in_array($optionLocale, config('app.supported_locales'), true)) { |
|
| 69 | 69 | $this->error( |
| 70 | 70 | $this->color->error('"' . $optionLocale . '" n\'est pas supporté. Les langues supportées sont: ' |
| 71 | 71 | . implode(', ', config('app.supported_locales'))) |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | if (is_file($languageFilePath)) { |
| 130 | 130 | // Charge les anciennes traductions |
| 131 | 131 | $languageStoredKeys = require $languageFilePath; |
| 132 | - } elseif (! is_dir($dir = dirname($languageFilePath))) { |
|
| 132 | + } elseif (!is_dir($dir = dirname($languageFilePath))) { |
|
| 133 | 133 | // Si le dossier n'existe pas, on le cree |
| 134 | 134 | @mkdir($dir, 0777, true); |
| 135 | 135 | } |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | $this->table($table); |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - if (! $this->showNew && $countNewKeys > 0) { |
|
| 199 | + if (!$this->showNew && $countNewKeys > 0) { |
|
| 200 | 200 | $this->eol()->writer->bgRed('Note: Vous devez utiliser votre outil de linting pour résoudre les problèmes liés aux normes de codage.', true); |
| 201 | 201 | } |
| 202 | 202 | } |
@@ -115,7 +115,7 @@ |
||
| 115 | 115 | |
| 116 | 116 | private function removeDevPackages(): void |
| 117 | 117 | { |
| 118 | - if (! defined('VENDOR_PATH')) { |
|
| 118 | + if (!defined('VENDOR_PATH')) { |
|
| 119 | 119 | return; |
| 120 | 120 | } |
| 121 | 121 | |
@@ -25,17 +25,17 @@ |
||
| 25 | 25 | Kint::$display_called_from = $config->display_called_from; |
| 26 | 26 | Kint::$expanded = $config->expanded; |
| 27 | 27 | |
| 28 | -if (! empty($config->plugins)) { |
|
| 28 | +if (!empty($config->plugins)) { |
|
| 29 | 29 | Kint::$plugins = $config->plugins; |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | RichRenderer::$theme = $config->rich_theme; |
| 33 | 33 | RichRenderer::$folder = $config->rich_folder; |
| 34 | 34 | |
| 35 | -if (! empty($config->rich_value_plugins)) { |
|
| 35 | +if (!empty($config->rich_value_plugins)) { |
|
| 36 | 36 | RichRenderer::$value_plugins = $config->rich_value_plugins; |
| 37 | 37 | } |
| 38 | -if (! empty($config->rich_tab_plugins)) { |
|
| 38 | +if (!empty($config->rich_tab_plugins)) { |
|
| 39 | 39 | RichRenderer::$tab_plugins = $config->rich_tab_plugins; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | public function __construct() |
| 23 | 23 | { |
| 24 | 24 | // SimpleXML est installé par défaut, mais il est préférable de vérifier, puis de fournir une solution de repli. |
| 25 | - if (! extension_loaded('simplexml')) { |
|
| 25 | + if (!extension_loaded('simplexml')) { |
|
| 26 | 26 | throw FormatException::missingExtension(); |
| 27 | 27 | } |
| 28 | 28 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | /** |
| 67 | 67 | * Une méthode récursive pour convertir un tableau en une chaîne XML valide. |
| 68 | 68 | */ |
| 69 | - protected function arrayToXml(array $data, SimpleXMLElement &$structure, string $basenode): void |
|
| 69 | + protected function arrayToXml(array $data, SimpleXMLElement&$structure, string $basenode): void |
|
| 70 | 70 | { |
| 71 | 71 | foreach ($data as $key => $value) { |
| 72 | 72 | // change false/true en 0/1 |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | /** @var LocatorInterface */ |
| 39 | 39 | $loader = service('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 |
||
| 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 |
||
| 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 |
||
| 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,18 +147,18 @@ discard block |
||
| 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 | - $schema = ! empty($file) ? require $file : null; |
|
| 159 | + $schema = !empty($file) ? require $file : null; |
|
| 160 | 160 | |
| 161 | - if (empty($schema) || ! ($schema instanceof Schema)) { |
|
| 161 | + if (empty($schema) || !($schema instanceof Schema)) { |
|
| 162 | 162 | $schema = Expect::mixed(); |
| 163 | 163 | } |
| 164 | 164 | |
@@ -176,16 +176,16 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | public static function model(string $model, ?ConnectionInterface $connection = null) |
| 178 | 178 | { |
| 179 | - if (! class_exists($model) && ! Text::endsWith($model, 'Model')) { |
|
| 179 | + if (!class_exists($model) && !Text::endsWith($model, 'Model')) { |
|
| 180 | 180 | $model .= 'Model'; |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - if (! class_exists($model)) { |
|
| 183 | + if (!class_exists($model)) { |
|
| 184 | 184 | $model = str_replace(APP_NAMESPACE . '\\Models\\', '', $model); |
| 185 | 185 | $model = APP_NAMESPACE . '\\Models\\' . $model; |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - if (! class_exists($model)) { |
|
| 188 | + if (!class_exists($model)) { |
|
| 189 | 189 | throw LoadException::modelNotFound($model); |
| 190 | 190 | } |
| 191 | 191 | |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | protected static function verifyPreferApp(array $options, string $name): bool |
| 215 | 215 | { |
| 216 | 216 | // Tout element sans restriction passe |
| 217 | - if (! $options['preferApp']) { |
|
| 217 | + if (!$options['preferApp']) { |
|
| 218 | 218 | return true; |
| 219 | 219 | } |
| 220 | 220 | |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | $callback = service('request')->getQuery('callback'); |
| 29 | 29 | |
| 30 | 30 | if (empty($callback)) { |
| 31 | - return json_encode($data, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES); |
|
| 31 | + return json_encode($data, JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | // Nous n'honorons qu'un rappel jsonp qui sont des identifiants javascript valides |