@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | |
| 14 | 14 | // Ce helper est automatiquement chargé par BlitzPHP. |
| 15 | 15 | |
| 16 | -if (! function_exists('dd')) { |
|
| 16 | +if (!function_exists('dd')) { |
|
| 17 | 17 | /** |
| 18 | 18 | * Imprime un rapport de débogage Kint et coupe le script. |
| 19 | 19 | * |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | } |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | -if (! function_exists('dump')) { |
|
| 35 | +if (!function_exists('dump')) { |
|
| 36 | 36 | /** |
| 37 | 37 | * Imprime un rapport de débogage Kint sans couper le script. |
| 38 | 38 | * |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | } |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | -if (! function_exists('d') && ! class_exists(Kint::class)) { |
|
| 52 | +if (!function_exists('d') && !class_exists(Kint::class)) { |
|
| 53 | 53 | // Au cas où Kint n'est pas chargé |
| 54 | 54 | /** |
| 55 | 55 | * @param array $vars |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | } |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | -if (! function_exists('trace')) { |
|
| 63 | +if (!function_exists('trace')) { |
|
| 64 | 64 | /** |
| 65 | 65 | * Fournit un backtrace au point d'exécution actuel, à partir de Kint. |
| 66 | 66 | * |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | */ |
| 71 | 71 | function trace() |
| 72 | 72 | { |
| 73 | - if (! class_exists(Kint::class)) { |
|
| 73 | + if (!class_exists(Kint::class)) { |
|
| 74 | 74 | return 0; |
| 75 | 75 | } |
| 76 | 76 | |
@@ -504,7 +504,7 @@ discard block |
||
| 504 | 504 | |
| 505 | 505 | protected static function cacheServices(): void |
| 506 | 506 | { |
| 507 | - if (! static::$discovered) { |
|
| 507 | + if (!static::$discovered) { |
|
| 508 | 508 | $locator = static::locator(); |
| 509 | 509 | $files = $locator->search('Config/Services'); |
| 510 | 510 | |
@@ -531,7 +531,7 @@ discard block |
||
| 531 | 531 | $name = array_shift($arguments); |
| 532 | 532 | |
| 533 | 533 | if (empty(static::$instances[$name])) { |
| 534 | - if (! empty($arguments)) { |
|
| 534 | + if (!empty($arguments)) { |
|
| 535 | 535 | static::$instances[$name] = static::factory($name, $arguments); |
| 536 | 536 | } else { |
| 537 | 537 | static::$instances[$name] = static::container()->get($name); |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | </span> |
| 43 | 43 | |
| 44 | 44 | <?php foreach ($collectors as $c) : ?> |
| 45 | - <?php if (! $c['isEmpty'] && ($c['hasTabContent'] || $c['hasLabel'])) : ?> |
|
| 45 | + <?php if (!$c['isEmpty'] && ($c['hasTabContent'] || $c['hasLabel'])) : ?> |
|
| 46 | 46 | <span class="blitzphp-label"> |
| 47 | 47 | <a href="javascript: void(0)" data-tab="blitzphp-<?= $c['key'] ?>"> |
| 48 | 48 | <img src="<?= $c['icon'] ?>"> |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | |
| 103 | 103 | <!-- Collector-provided Tabs --> |
| 104 | 104 | <?php foreach ($collectors as $c) : ?> |
| 105 | - <?php if (! $c['isEmpty']) : ?> |
|
| 105 | + <?php if (!$c['isEmpty']) : ?> |
|
| 106 | 106 | <?php if ($c['hasTabContent']) : ?> |
| 107 | 107 | <div id="blitzphp-<?= $c['key'] ?>" class="tab"> |
| 108 | 108 | <h2><?= $c['title'] ?> <span><?= $c['titleDetails'] ?></span></h2> |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | </a> |
| 150 | 150 | |
| 151 | 151 | <?php if (isset($vars['session'])) : ?> |
| 152 | - <?php if (! empty($vars['session'])) : ?> |
|
| 152 | + <?php if (!empty($vars['session'])) : ?> |
|
| 153 | 153 | <table id="session_table"> |
| 154 | 154 | <tbody> |
| 155 | 155 | <?php foreach ($vars['session'] as $key => $value) : ?> |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | public function collect(bool $reset = true): array |
| 37 | 37 | { |
| 38 | - if (! $reset && $this->cachedRoutes !== []) { |
|
| 38 | + if (!$reset && $this->cachedRoutes !== []) { |
|
| 39 | 39 | return $this->cachedRoutes; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * the LICENSE file that was distributed with this source code. |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -if (! function_exists('css_url')) { |
|
| 12 | +if (!function_exists('css_url')) { |
|
| 13 | 13 | /** |
| 14 | 14 | * CSS URL |
| 15 | 15 | * |
@@ -23,17 +23,17 @@ discard block |
||
| 23 | 23 | $name = str_replace(site_url() . 'css/', '', htmlspecialchars($name)); |
| 24 | 24 | |
| 25 | 25 | if (is_localfile($name)) { |
| 26 | - $name .= (! preg_match('#\.css$#i', $name) ? '.css' : ''); |
|
| 26 | + $name .= (!preg_match('#\.css$#i', $name) ? '.css' : ''); |
|
| 27 | 27 | $filename = WEBROOT . 'css' . DS . $name; |
| 28 | 28 | |
| 29 | 29 | return site_url() . 'css/' . $name . ((file_exists($filename)) ? '?v=' . filemtime($filename) : ''); |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - return $name . (! preg_match('#\.css$#i', $name) ? '.css' : ''); |
|
| 32 | + return $name . (!preg_match('#\.css$#i', $name) ? '.css' : ''); |
|
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | -if (! function_exists('js_url')) { |
|
| 36 | +if (!function_exists('js_url')) { |
|
| 37 | 37 | /** |
| 38 | 38 | * JS URL |
| 39 | 39 | * |
@@ -47,17 +47,17 @@ discard block |
||
| 47 | 47 | $name = str_replace(site_url() . 'js/', '', htmlspecialchars($name)); |
| 48 | 48 | |
| 49 | 49 | if (is_localfile($name)) { |
| 50 | - $name .= (! preg_match('#\.js$#i', $name) ? '.js' : ''); |
|
| 50 | + $name .= (!preg_match('#\.js$#i', $name) ? '.js' : ''); |
|
| 51 | 51 | $filename = WEBROOT . 'js' . DS . $name; |
| 52 | 52 | |
| 53 | 53 | return site_url() . 'js/' . $name . ((file_exists($filename)) ? '?v=' . filemtime($filename) : ''); |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - return $name . (! preg_match('#\.js$#i', $name) ? '.js' : ''); |
|
| 56 | + return $name . (!preg_match('#\.js$#i', $name) ? '.js' : ''); |
|
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | -if (! function_exists('lib_css_url')) { |
|
| 60 | +if (!function_exists('lib_css_url')) { |
|
| 61 | 61 | /** |
| 62 | 62 | * LIB CSS URL |
| 63 | 63 | * |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | ); |
| 77 | 77 | |
| 78 | 78 | if (is_localfile($name)) { |
| 79 | - $name .= (! preg_match('#\.css$#i', $name) ? '.css' : ''); |
|
| 79 | + $name .= (!preg_match('#\.css$#i', $name) ? '.css' : ''); |
|
| 80 | 80 | $paths = ['lib', 'vendor', 'plugins']; |
| 81 | 81 | |
| 82 | 82 | foreach ($paths as $path) { |
@@ -90,11 +90,11 @@ discard block |
||
| 90 | 90 | return $site_url . 'lib/' . $name; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - return $name . (! preg_match('#\.css$#i', $name) ? '.css' : ''); |
|
| 93 | + return $name . (!preg_match('#\.css$#i', $name) ? '.css' : ''); |
|
| 94 | 94 | } |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | -if (! function_exists('lib_js_url')) { |
|
| 97 | +if (!function_exists('lib_js_url')) { |
|
| 98 | 98 | /** |
| 99 | 99 | * LIB JS URL |
| 100 | 100 | * |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | ); |
| 114 | 114 | |
| 115 | 115 | if (is_localfile($name)) { |
| 116 | - $name .= (! preg_match('#\.js$#i', $name) ? '.js' : ''); |
|
| 116 | + $name .= (!preg_match('#\.js$#i', $name) ? '.js' : ''); |
|
| 117 | 117 | $paths = ['lib', 'vendor', 'plugins']; |
| 118 | 118 | |
| 119 | 119 | foreach ($paths as $path) { |
@@ -127,11 +127,11 @@ discard block |
||
| 127 | 127 | return $site_url . 'lib/' . $name; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - return $name . (! preg_match('#\.js$#i', $name) ? '.js' : ''); |
|
| 130 | + return $name . (!preg_match('#\.js$#i', $name) ? '.js' : ''); |
|
| 131 | 131 | } |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | -if (! function_exists('lib_styles')) { |
|
| 134 | +if (!function_exists('lib_styles')) { |
|
| 135 | 135 | /** |
| 136 | 136 | * LIB_STYLES |
| 137 | 137 | * |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | |
| 150 | 150 | foreach ($name as $style) { |
| 151 | 151 | if (is_string($style)) { |
| 152 | - $style = (! preg_match('#\.css$#i', $style) ? $style . '.css' : $style); |
|
| 152 | + $style = (!preg_match('#\.css$#i', $style) ? $style . '.css' : $style); |
|
| 153 | 153 | if (is_file(WEBROOT . 'lib' . DS . str_replace('/', DS, $style))) { |
| 154 | 154 | $return[] = '<link rel="preload" type="text/css" href="' . lib_css_url($style) . '" as="style"> |
| 155 | 155 | <link rel="stylesheet" type="text/css" href="' . lib_css_url($style) . '" />'; |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | } |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | -if (! function_exists('lib_scripts')) { |
|
| 176 | +if (!function_exists('lib_scripts')) { |
|
| 177 | 177 | /** |
| 178 | 178 | * LIB_SCRIPTS |
| 179 | 179 | * |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | |
| 192 | 192 | foreach ($name as $script) { |
| 193 | 193 | if (is_string($script)) { |
| 194 | - $script = (! preg_match('#\.js$#i', $script) ? $script . '.js' : $script); |
|
| 194 | + $script = (!preg_match('#\.js$#i', $script) ? $script . '.js' : $script); |
|
| 195 | 195 | if (is_file(WEBROOT . 'lib' . DS . str_replace('/', DS, $script))) { |
| 196 | 196 | $return[] = '<script type="text/javascript" src="' . lib_js_url($script) . '"></script>'; |
| 197 | 197 | } elseif (is_localfile($script)) { |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | } |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | -if (! function_exists('styles')) { |
|
| 216 | +if (!function_exists('styles')) { |
|
| 217 | 217 | /** |
| 218 | 218 | * STYLES |
| 219 | 219 | * |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | |
| 232 | 232 | foreach ($name as $style) { |
| 233 | 233 | if (is_string($style)) { |
| 234 | - $style = (! preg_match('#\.css$#i', $style) ? $style . '.css' : $style); |
|
| 234 | + $style = (!preg_match('#\.css$#i', $style) ? $style . '.css' : $style); |
|
| 235 | 235 | if (is_file(WEBROOT . 'css' . DS . str_replace('/', DS, $style))) { |
| 236 | 236 | $return[] = '<link rel="preload" type="text/css" href="' . css_url($style) . '" as="style"> |
| 237 | 237 | <link rel="stylesheet" type="text/css" href="' . css_url($style) . '" />'; |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | } |
| 256 | 256 | } |
| 257 | 257 | |
| 258 | -if (! function_exists('scripts')) { |
|
| 258 | +if (!function_exists('scripts')) { |
|
| 259 | 259 | /** |
| 260 | 260 | * SCRIPTS |
| 261 | 261 | * |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | |
| 274 | 274 | foreach ($name as $script) { |
| 275 | 275 | if (is_string($script)) { |
| 276 | - $script = (! preg_match('#\.js$#i', $script) ? $script . '.js' : $script); |
|
| 276 | + $script = (!preg_match('#\.js$#i', $script) ? $script . '.js' : $script); |
|
| 277 | 277 | if (is_file(WEBROOT . 'js' . DS . str_replace('/', DS, $script))) { |
| 278 | 278 | $return[] = '<script type="text/javascript" src="' . js_url($script) . '"></script>'; |
| 279 | 279 | } elseif (is_localfile($script)) { |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | } |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | -if (! function_exists('less_url')) { |
|
| 298 | +if (!function_exists('less_url')) { |
|
| 299 | 299 | /** |
| 300 | 300 | * LESS URL |
| 301 | 301 | * |
@@ -309,17 +309,17 @@ discard block |
||
| 309 | 309 | $name = str_replace(site_url() . 'less/', '', htmlspecialchars($name)); |
| 310 | 310 | |
| 311 | 311 | if (is_localfile($name)) { |
| 312 | - $name .= (! preg_match('#\.less$#i', $name) ? '.less' : ''); |
|
| 312 | + $name .= (!preg_match('#\.less$#i', $name) ? '.less' : ''); |
|
| 313 | 313 | $filename = WEBROOT . 'less' . DS . $name; |
| 314 | 314 | |
| 315 | 315 | return site_url() . 'less/' . $name . ((file_exists($filename)) ? '?v=' . filemtime($filename) : ''); |
| 316 | 316 | } |
| 317 | 317 | |
| 318 | - return $name . (! preg_match('#\.less$#i', $name) ? '.less' : ''); |
|
| 318 | + return $name . (!preg_match('#\.less$#i', $name) ? '.less' : ''); |
|
| 319 | 319 | } |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | -if (! function_exists('less_styles')) { |
|
| 322 | +if (!function_exists('less_styles')) { |
|
| 323 | 323 | /** |
| 324 | 324 | * LESS_STYLES |
| 325 | 325 | * |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | |
| 338 | 338 | foreach ($name as $style) { |
| 339 | 339 | if (is_string($style)) { |
| 340 | - $style = (! preg_match('#\.less$#i', $style) ? $style . '.less' : $style); |
|
| 340 | + $style = (!preg_match('#\.less$#i', $style) ? $style . '.less' : $style); |
|
| 341 | 341 | if (is_file(WEBROOT . 'less' . DS . str_replace('/', DS, $style))) { |
| 342 | 342 | $return[] = '<link rel="stylesheet" type="text/less" href="' . less_url($style) . '" />'; |
| 343 | 343 | } elseif (is_localfile($style)) { |
@@ -359,7 +359,7 @@ discard block |
||
| 359 | 359 | } |
| 360 | 360 | } |
| 361 | 361 | |
| 362 | -if (! function_exists('img_url')) { |
|
| 362 | +if (!function_exists('img_url')) { |
|
| 363 | 363 | /** |
| 364 | 364 | * IMG URL |
| 365 | 365 | * |
@@ -386,7 +386,7 @@ discard block |
||
| 386 | 386 | } |
| 387 | 387 | } |
| 388 | 388 | |
| 389 | -if (! function_exists('img')) { |
|
| 389 | +if (!function_exists('img')) { |
|
| 390 | 390 | /** |
| 391 | 391 | * IMG |
| 392 | 392 | * |
@@ -417,7 +417,7 @@ discard block |
||
| 417 | 417 | } |
| 418 | 418 | } |
| 419 | 419 | |
| 420 | -if (! function_exists('docs_url')) { |
|
| 420 | +if (!function_exists('docs_url')) { |
|
| 421 | 421 | /** |
| 422 | 422 | * DOCS URL |
| 423 | 423 | * |
@@ -444,7 +444,7 @@ discard block |
||
| 444 | 444 | } |
| 445 | 445 | } |
| 446 | 446 | |
| 447 | -if (! function_exists('videos_url')) { |
|
| 447 | +if (!function_exists('videos_url')) { |
|
| 448 | 448 | /** |
| 449 | 449 | * VIDEOS URL |
| 450 | 450 | * |
@@ -471,7 +471,7 @@ discard block |
||
| 471 | 471 | } |
| 472 | 472 | } |
| 473 | 473 | |
| 474 | -if (! function_exists('mix')) { |
|
| 474 | +if (!function_exists('mix')) { |
|
| 475 | 475 | /** |
| 476 | 476 | * Obtenez le chemin d'accès à un fichier Mix versionné. |
| 477 | 477 | * |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | if (is_file($publicPath . $manifestDirectory . '/hot')) { |
| 497 | 497 | $url = rtrim(file_get_contents($publicPath . $manifestDirectory . '/hot')); |
| 498 | 498 | |
| 499 | - if (! empty($customUrl = $customUrl = $config->hot_proxy_url)) { |
|
| 499 | + if (!empty($customUrl = $customUrl = $config->hot_proxy_url)) { |
|
| 500 | 500 | return $customUrl . $path; |
| 501 | 501 | } |
| 502 | 502 | |
@@ -509,8 +509,8 @@ discard block |
||
| 509 | 509 | |
| 510 | 510 | $manifestPath = $publicPath . $manifestDirectory . '/mix-manifest.json'; |
| 511 | 511 | |
| 512 | - if (! isset($manifests[$manifestPath])) { |
|
| 513 | - if (! is_file($manifestPath)) { |
|
| 512 | + if (!isset($manifests[$manifestPath])) { |
|
| 513 | + if (!is_file($manifestPath)) { |
|
| 514 | 514 | throw new Exception('Le manifeste Mix n\'existe pas.'); |
| 515 | 515 | } |
| 516 | 516 | |
@@ -519,10 +519,10 @@ discard block |
||
| 519 | 519 | |
| 520 | 520 | $manifest = $manifests[$manifestPath]; |
| 521 | 521 | |
| 522 | - if (! isset($manifest[$path])) { |
|
| 522 | + if (!isset($manifest[$path])) { |
|
| 523 | 523 | $exception = new Exception("Impossible de localiser le fichier Mix: {$path}."); |
| 524 | 524 | |
| 525 | - if (! BLITZ_DEBUG) { |
|
| 525 | + if (!BLITZ_DEBUG) { |
|
| 526 | 526 | return $path; |
| 527 | 527 | } |
| 528 | 528 | |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | foreach ($files as $file) { |
| 36 | 36 | $className = $this->locator->getClassname($file); |
| 37 | 37 | |
| 38 | - if ($className === '' || ! class_exists($className) || ! is_a($className, EventListenerInterface::class, true)) { |
|
| 38 | + if ($className === '' || !class_exists($className) || !is_a($className, EventListenerInterface::class, true)) { |
|
| 39 | 39 | continue; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -120,7 +120,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 ''; |
@@ -66,14 +66,14 @@ |
||
| 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; |
@@ -111,7 +111,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |