@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | // ================================= ================================= // |
| 27 | 27 | |
| 28 | -if (! function_exists('url')) { |
|
| 28 | +if (!function_exists('url')) { |
|
| 29 | 29 | /** |
| 30 | 30 | * Générer une url pour l'application. |
| 31 | 31 | * |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | -if (! function_exists('site_url')) { |
|
| 47 | +if (!function_exists('site_url')) { |
|
| 48 | 48 | /** |
| 49 | 49 | * Renvoie une URL de site telle que définie par la configuration de l'application. |
| 50 | 50 | * |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | } |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | -if (! function_exists('base_url')) { |
|
| 71 | +if (!function_exists('base_url')) { |
|
| 72 | 72 | /** |
| 73 | 73 | * Renvoie l'URL de base telle que définie par la configuration de l'application. |
| 74 | 74 | * Les URL de base sont des URL de site coupées sans la page d'index. |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | -if (! function_exists('current_url')) { |
|
| 90 | +if (!function_exists('current_url')) { |
|
| 91 | 91 | /** |
| 92 | 92 | * Renvoie l'URL complète (y compris les segments) de la page où cette fonction est placée |
| 93 | 93 | * |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | } |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | -if (! function_exists('previous_url')) { |
|
| 117 | +if (!function_exists('previous_url')) { |
|
| 118 | 118 | /** |
| 119 | 119 | * Renvoie l'URL précédente sur laquelle se trouvait le visiteur actuel. Pour des raisons de sécurité |
| 120 | 120 | * nous vérifions d'abord une variable de session enregistrée, si elle existe, et l'utilisons. |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | } |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | -if (! function_exists('uri_string')) { |
|
| 134 | +if (!function_exists('uri_string')) { |
|
| 135 | 135 | /** |
| 136 | 136 | * Renvoie la partie chemin de l'URL actuelle |
| 137 | 137 | * |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | } |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | -if (! function_exists('index_page')) { |
|
| 148 | +if (!function_exists('index_page')) { |
|
| 149 | 149 | /** |
| 150 | 150 | * Renvoie la "index_page" de votre fichier de configuration |
| 151 | 151 | */ |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | } |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | -if (! function_exists('anchor')) { |
|
| 158 | +if (!function_exists('anchor')) { |
|
| 159 | 159 | /** |
| 160 | 160 | * Crée une ancre basée sur l'URL locale. |
| 161 | 161 | * |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | } |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | -if (! function_exists('anchor_popup')) { |
|
| 183 | +if (!function_exists('anchor_popup')) { |
|
| 184 | 184 | /** |
| 185 | 185 | * Lien d'ancrage - Version contextuelle |
| 186 | 186 | * |
@@ -203,12 +203,12 @@ discard block |
||
| 203 | 203 | return '<a href="' . $siteUrl . '" onclick="window.open(\'' . $siteUrl . "', '_blank'); return false;\">" . $title . '</a>'; |
| 204 | 204 | } |
| 205 | 205 | |
| 206 | - if (! is_array($attributes)) { |
|
| 206 | + if (!is_array($attributes)) { |
|
| 207 | 207 | $attributes = [$attributes]; |
| 208 | 208 | |
| 209 | 209 | // Ref: http://www.w3schools.com/jsref/met_win_open.asp |
| 210 | 210 | $windowName = '_blank'; |
| 211 | - } elseif (! empty($attributes['window_name'])) { |
|
| 211 | + } elseif (!empty($attributes['window_name'])) { |
|
| 212 | 212 | $windowName = $attributes['window_name']; |
| 213 | 213 | unset($attributes['window_name']); |
| 214 | 214 | } else { |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | } |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | -if (! function_exists('mailto')) { |
|
| 231 | +if (!function_exists('mailto')) { |
|
| 232 | 232 | /** |
| 233 | 233 | * Lien Mailto |
| 234 | 234 | * |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | } |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | -if (! function_exists('safe_mailto')) { |
|
| 248 | +if (!function_exists('safe_mailto')) { |
|
| 249 | 249 | /** |
| 250 | 250 | * Lien Mailto codé |
| 251 | 251 | * |
@@ -336,7 +336,7 @@ discard block |
||
| 336 | 336 | } |
| 337 | 337 | } |
| 338 | 338 | |
| 339 | -if (! function_exists('auto_link')) { |
|
| 339 | +if (!function_exists('auto_link')) { |
|
| 340 | 340 | /** |
| 341 | 341 | * Lien automatique |
| 342 | 342 | * |
@@ -351,7 +351,7 @@ discard block |
||
| 351 | 351 | function auto_link(string $str, string $type = 'both', bool $popup = false): string |
| 352 | 352 | { |
| 353 | 353 | // Recherche et remplace tous les URLs. |
| 354 | - if ($type !== 'email' && preg_match_all('#(\w*://|www\.)[^\s()<>;]+\w#i', $str, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) { |
|
| 354 | + if ($type !== 'email' && preg_match_all('#(\w*://|www\.)[^\s()<>;]+\w#i', $str, $matches, PREG_OFFSET_CAPTURE|PREG_SET_ORDER)) { |
|
| 355 | 355 | // Définissez notre HTML cible si vous utilisez des liens contextuels. |
| 356 | 356 | $target = ($popup) ? ' target="_blank"' : ''; |
| 357 | 357 | |
@@ -382,7 +382,7 @@ discard block |
||
| 382 | 382 | } |
| 383 | 383 | } |
| 384 | 384 | |
| 385 | -if (! function_exists('prep_url')) { |
|
| 385 | +if (!function_exists('prep_url')) { |
|
| 386 | 386 | /** |
| 387 | 387 | * Ajoute simplement la partie http:// ou https:// si aucun schéma n'est inclus. |
| 388 | 388 | * |
@@ -407,7 +407,7 @@ discard block |
||
| 407 | 407 | } |
| 408 | 408 | } |
| 409 | 409 | |
| 410 | -if (! function_exists('url_title')) { |
|
| 410 | +if (!function_exists('url_title')) { |
|
| 411 | 411 | /** |
| 412 | 412 | * Créer un titre d'URL |
| 413 | 413 | * |
@@ -443,7 +443,7 @@ discard block |
||
| 443 | 443 | } |
| 444 | 444 | } |
| 445 | 445 | |
| 446 | -if (! function_exists('mb_url_title')) { |
|
| 446 | +if (!function_exists('mb_url_title')) { |
|
| 447 | 447 | /** |
| 448 | 448 | * Créer un titre d'URL qui prend en compte les caractères accentués |
| 449 | 449 | * |
@@ -462,7 +462,7 @@ discard block |
||
| 462 | 462 | } |
| 463 | 463 | } |
| 464 | 464 | |
| 465 | -if (! function_exists('url_to')) { |
|
| 465 | +if (!function_exists('url_to')) { |
|
| 466 | 466 | /** |
| 467 | 467 | * Obtenir l'URL complète et absolue d'une méthode de contrôleur |
| 468 | 468 | * (avec arguments supplémentaires) |
@@ -475,7 +475,7 @@ discard block |
||
| 475 | 475 | */ |
| 476 | 476 | function url_to(string $controller, ...$args): string |
| 477 | 477 | { |
| 478 | - if (! $route = route($controller, ...$args)) { |
|
| 478 | + if (!$route = route($controller, ...$args)) { |
|
| 479 | 479 | $explode = explode('::', $controller); |
| 480 | 480 | |
| 481 | 481 | if (isset($explode[1])) { |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | } |
| 490 | 490 | } |
| 491 | 491 | |
| 492 | -if (! function_exists('route')) { |
|
| 492 | +if (!function_exists('route')) { |
|
| 493 | 493 | /** |
| 494 | 494 | * Tente de rechercher une route en fonction de sa destination. |
| 495 | 495 | * |
@@ -501,7 +501,7 @@ discard block |
||
| 501 | 501 | } |
| 502 | 502 | } |
| 503 | 503 | |
| 504 | -if (! function_exists('action')) { |
|
| 504 | +if (!function_exists('action')) { |
|
| 505 | 505 | /** |
| 506 | 506 | * Obtenir l'URL d'une action du contrôleur. |
| 507 | 507 | * |
@@ -513,7 +513,7 @@ discard block |
||
| 513 | 513 | } |
| 514 | 514 | } |
| 515 | 515 | |
| 516 | -if (! function_exists('url_is')) { |
|
| 516 | +if (!function_exists('url_is')) { |
|
| 517 | 517 | /** |
| 518 | 518 | * Détermine si le chemin d'URL actuel contient le chemin donné. |
| 519 | 519 | * Il peut contenir un caractère générique (*) qui autorisera tout caractère valide. |
@@ -531,7 +531,7 @@ discard block |
||
| 531 | 531 | } |
| 532 | 532 | } |
| 533 | 533 | |
| 534 | -if (! function_exists('link_active')) { |
|
| 534 | +if (!function_exists('link_active')) { |
|
| 535 | 535 | /** |
| 536 | 536 | * Lien actif dans la navbar |
| 537 | 537 | * Un peut comme le router-active-link de vuejs |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | return $active_class; |
| 556 | 556 | } |
| 557 | 557 | |
| 558 | - if (! $exact && preg_match('#^' . $path . '/?#i', $current_section)) { |
|
| 558 | + if (!$exact && preg_match('#^' . $path . '/?#i', $current_section)) { |
|
| 559 | 559 | return $active_class; |
| 560 | 560 | } |
| 561 | 561 | |
@@ -567,14 +567,14 @@ discard block |
||
| 567 | 567 | } |
| 568 | 568 | } |
| 569 | 569 | |
| 570 | -if (! function_exists('clean_url')) { |
|
| 570 | +if (!function_exists('clean_url')) { |
|
| 571 | 571 | function clean_url(string $url): string |
| 572 | 572 | { |
| 573 | 573 | return Helpers::cleanUrl($url); |
| 574 | 574 | } |
| 575 | 575 | } |
| 576 | 576 | |
| 577 | -if (! function_exists('is_absolute_link')) { |
|
| 577 | +if (!function_exists('is_absolute_link')) { |
|
| 578 | 578 | /** |
| 579 | 579 | * Verifies si un chemin donnée est une url absolue ou relative |
| 580 | 580 | */ |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | */ |
| 252 | 252 | public function seek(int $position): void |
| 253 | 253 | { |
| 254 | - if (! isset($this->queue[$position])) { |
|
| 254 | + if (!isset($this->queue[$position])) { |
|
| 255 | 255 | throw new OutOfBoundsException(sprintf('Invalid seek position (%s).', $position)); |
| 256 | 256 | } |
| 257 | 257 | |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | */ |
| 272 | 272 | public function current(): MiddlewareInterface |
| 273 | 273 | { |
| 274 | - if (! isset($this->queue[$this->position])) { |
|
| 274 | + if (!isset($this->queue[$this->position])) { |
|
| 275 | 275 | throw new OutOfBoundsException(sprintf('Position actuelle non valide (%s).', $this->position)); |
| 276 | 276 | } |
| 277 | 277 | |
@@ -343,8 +343,8 @@ discard block |
||
| 343 | 343 | public function resolveGroups() |
| 344 | 344 | { |
| 345 | 345 | foreach ($this->queue as $queue) { |
| 346 | - if (is_string($queue) && ! empty($this->groups[$queue])) { |
|
| 347 | - if (! is_array($this->groups[$queue])) { |
|
| 346 | + if (is_string($queue) && !empty($this->groups[$queue])) { |
|
| 347 | + if (!is_array($this->groups[$queue])) { |
|
| 348 | 348 | continue; |
| 349 | 349 | } |
| 350 | 350 | |
@@ -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 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | $possibleView2 = $directory . $viewName . '.php'; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - if ($view !== '' && ! is_file($view)) { |
|
| 82 | + if ($view !== '' && !is_file($view)) { |
|
| 83 | 83 | $directory = dirname((new ReflectionClass($this))->getFileName()) . DIRECTORY_SEPARATOR; |
| 84 | 84 | |
| 85 | 85 | $view = $directory . $view . '.php'; |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | |
| 100 | 100 | $foundView = current($candidateViews); |
| 101 | 101 | |
| 102 | - return (function () use ($properties, $foundView): string { |
|
| 102 | + return (function() use ($properties, $foundView): string { |
|
| 103 | 103 | extract($properties); |
| 104 | 104 | ob_start(); |
| 105 | 105 | include $foundView; |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | { |
| 74 | 74 | $key = $this->_key($key); |
| 75 | 75 | |
| 76 | - if (! isset($this->cache[$key])) { |
|
| 76 | + if (!isset($this->cache[$key])) { |
|
| 77 | 77 | return false; |
| 78 | 78 | } |
| 79 | 79 | |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | |
| 112 | 112 | if ($data === null) { |
| 113 | 113 | $data = 0; |
| 114 | - } elseif (! is_int($data)) { |
|
| 114 | + } elseif (!is_int($data)) { |
|
| 115 | 115 | return false; |
| 116 | 116 | } |
| 117 | 117 | |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | |
| 130 | 130 | if ($data === null) { |
| 131 | 131 | $data = 0; |
| 132 | - } elseif (! is_int($data)) { |
|
| 132 | + } elseif (!is_int($data)) { |
|
| 133 | 133 | return false; |
| 134 | 134 | } |
| 135 | 135 | |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | public function getMetaData(string $key): ?array |
| 175 | 175 | { |
| 176 | 176 | // n'existe pas, retourne null |
| 177 | - if (! array_key_exists($key, $this->expirations)) { |
|
| 177 | + if (!array_key_exists($key, $this->expirations)) { |
|
| 178 | 178 | return null; |
| 179 | 179 | } |
| 180 | 180 | |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | return $base . $fullname; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - if ($plugin || ! static::_classExistsInBase($fullname, 'BlitzPHP')) { |
|
| 70 | + if ($plugin || !static::_classExistsInBase($fullname, 'BlitzPHP')) { |
|
| 71 | 71 | return null; |
| 72 | 72 | } |
| 73 | 73 | |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | $options = (array) $options; |
| 46 | 46 | |
| 47 | 47 | // N'est-il pas namespaced ? on cherche le dossier en fonction du controleur |
| 48 | - if (! str_contains($view, '\\')) { |
|
| 48 | + if (!str_contains($view, '\\')) { |
|
| 49 | 49 | $reflection = new ReflectionClass(static::class); |
| 50 | 50 | ['dirname' => $dirname, 'filename' => $filename] = pathinfo($reflection->getFileName()); |
| 51 | 51 | $dirname = str_ireplace('Controllers', 'Views', $dirname); |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | $dirname = implode('Views', $parts); |
| 60 | 60 | $path = implode(DS, [$dirname, $filename]) . DS; |
| 61 | 61 | |
| 62 | - if (! is_dir($path)) { |
|
| 62 | + if (!is_dir($path)) { |
|
| 63 | 63 | $path = implode(DS, [$dirname]) . DS; |
| 64 | 64 | } |
| 65 | 65 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | if (empty($data['title'])) { |
| 80 | - if (! is_string($controllerName = Dispatcher::getController(false))) { |
|
| 80 | + if (!is_string($controllerName = Dispatcher::getController(false))) { |
|
| 81 | 81 | $controllerName = static::class; |
| 82 | 82 | } |
| 83 | 83 | $controllerName = str_ireplace(['App\Controllers', 'Controller'], '', $controllerName); |
@@ -162,11 +162,11 @@ discard block |
||
| 162 | 162 | $this->modelName = is_object($which) ? null : $which; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - if (empty($this->model) && ! empty($this->modelName) && class_exists($this->modelName)) { |
|
| 165 | + if (empty($this->model) && !empty($this->modelName) && class_exists($this->modelName)) { |
|
| 166 | 166 | $this->model = model($this->modelName); |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - if (! empty($this->model) && empty($this->modelName)) { |
|
| 169 | + if (!empty($this->model) && empty($this->modelName)) { |
|
| 170 | 170 | $this->modelName = $this->model::class; |
| 171 | 171 | } |
| 172 | 172 | } |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | */ |
| 205 | 205 | private function getModel() |
| 206 | 206 | { |
| 207 | - $model = ! empty($this->modelName) ? $this->modelName : str_replace('Controller', 'Model', static::class); |
|
| 207 | + $model = !empty($this->modelName) ? $this->modelName : str_replace('Controller', 'Model', static::class); |
|
| 208 | 208 | |
| 209 | 209 | if (class_exists($model)) { |
| 210 | 210 | $this->setModel($model); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | */ |
| 62 | 62 | public function exists(string $key): bool |
| 63 | 63 | { |
| 64 | - if (! $this->configurator->exists($key)) { |
|
| 64 | + if (!$this->configurator->exists($key)) { |
|
| 65 | 65 | $config = explode('.', $key); |
| 66 | 66 | $this->load($config[0]); |
| 67 | 67 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | */ |
| 85 | 85 | public function missing(string $key): bool |
| 86 | 86 | { |
| 87 | - return ! $this->exists($key); |
|
| 87 | + return !$this->exists($key); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
@@ -165,18 +165,18 @@ discard block |
||
| 165 | 165 | } |
| 166 | 166 | $this->load($conf, $file, null, $allow_empty); |
| 167 | 167 | } |
| 168 | - } elseif (! isset(self::$loaded[$config])) { |
|
| 168 | + } elseif (!isset(self::$loaded[$config])) { |
|
| 169 | 169 | $file ??= self::path($config); |
| 170 | 170 | $schema ??= self::schema($config); |
| 171 | 171 | |
| 172 | 172 | $configurations = []; |
| 173 | - if (file_exists($file) && ! in_array($file, get_included_files(), true)) { |
|
| 173 | + if (file_exists($file) && !in_array($file, get_included_files(), true)) { |
|
| 174 | 174 | $configurations = (array) require $file; |
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | $configurations = Arr::merge(self::$registrars[$config] ?? [], $configurations); |
| 178 | 178 | |
| 179 | - if (empty($configurations) && ! $allow_empty && ! is_a($schema, Schema::class, true)) { |
|
| 179 | + if (empty($configurations) && !$allow_empty && !is_a($schema, Schema::class, true)) { |
|
| 180 | 180 | return; |
| 181 | 181 | } |
| 182 | 182 | |
@@ -283,14 +283,14 @@ discard block |
||
| 283 | 283 | } |
| 284 | 284 | |
| 285 | 285 | $class = new ReflectionClass($classname); |
| 286 | - $methods = $class->getMethods(ReflectionMethod::IS_STATIC | ReflectionMethod::IS_PUBLIC); |
|
| 286 | + $methods = $class->getMethods(ReflectionMethod::IS_STATIC|ReflectionMethod::IS_PUBLIC); |
|
| 287 | 287 | |
| 288 | 288 | foreach ($methods as $method) { |
| 289 | - if (! ($method->isPublic() && $method->isStatic())) { |
|
| 289 | + if (!($method->isPublic() && $method->isStatic())) { |
|
| 290 | 290 | continue; |
| 291 | 291 | } |
| 292 | 292 | |
| 293 | - if (! is_array($result = $method->invoke(null))) { |
|
| 293 | + if (!is_array($result = $method->invoke(null))) { |
|
| 294 | 294 | continue; |
| 295 | 295 | } |
| 296 | 296 | |
@@ -359,12 +359,12 @@ discard block |
||
| 359 | 359 | { |
| 360 | 360 | $config = $this->get('app.show_debugbar', 'auto'); |
| 361 | 361 | |
| 362 | - if (! in_array($config, ['auto', true, false], true)) { |
|
| 362 | + if (!in_array($config, ['auto', true, false], true)) { |
|
| 363 | 363 | self::exceptBadConfigValue('show_debugbar', ['auto', true, false], 'app'); |
| 364 | 364 | } |
| 365 | 365 | |
| 366 | 366 | if ($config === 'auto') { |
| 367 | - $this->set('app.show_debugbar', ! is_online()); |
|
| 367 | + $this->set('app.show_debugbar', !is_online()); |
|
| 368 | 368 | } |
| 369 | 369 | } |
| 370 | 370 | |