🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:OptimizeClearCommand.php
<?php namespace Illuminate\Foundation\Console; use Illuminate\Console\Command; use Illuminate\Support\Collection; use Illuminate\Support\ServiceProvider; use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Input\InputOption; #[AsCommand(name: 'optimize:clear')] class OptimizeClearCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'optimize:clear'; /** * The console command description. * * @var string */ protected $description = 'Remove the cached bootstrap files'; /** * Execute the console command. * * @return void */ public function handle() { $this->components->info('Clearing cached bootstrap files.'); $exceptions = Collection::wrap(explode(',', $this->option('except') ?? '')) ->map(fn ($except) => trim($except)) ->filter() ->unique() ->flip(); $tasks = Collection::wrap($this->getOptimizeClearTasks()) ->reject(fn ($command, $key) => $exceptions->hasAny([$command, $key])) ->toArray(); foreach ($tasks as $description => $command) { $this->components->task($description, fn () => $this->callSilently($command) == 0); } $this->newLine(); } /** * Get the commands that should be run to clear the "optimization" files. * * @return array */ public function getOptimizeClearTasks() { return [ 'config' => 'config:clear', 'cache' => 'cache:clear', 'compiled' => 'clear-compiled', 'events' => 'event:clear', 'routes' => 'route:clear', 'views' => 'view:clear', ...ServiceProvider::$optimizeClearCommands, ]; } /** * Get the console command arguments. * * @return array */ protected function getOptions() { return [ ['except', 'e', InputOption::VALUE_OPTIONAL, 'The commands to skip'], ]; } }
Save Changes
Cancel
Create New File
Create New Folder