%PDF- %PDF-
Direktori : /var/www/html/coding/vendor/laravel/framework/src/Illuminate/Foundation/Console/ |
Current File : /var/www/html/coding/vendor/laravel/framework/src/Illuminate/Foundation/Console/OptimizeCommand.php |
<?php namespace Illuminate\Foundation\Console; use Illuminate\Console\Command; use Illuminate\Support\Composer; use Symfony\Component\Console\Input\InputOption; class OptimizeCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'optimize'; /** * The console command description. * * @var string */ protected $description = 'Optimize the framework for better performance'; /** * The composer instance. * * @var \Illuminate\Support\Composer */ protected $composer; /** * Create a new optimize command instance. * * @param \Illuminate\Support\Composer $composer * @return void */ public function __construct(Composer $composer) { parent::__construct(); $this->composer = $composer; } /** * Execute the console command. * * @return void */ public function fire() { $this->info('Generating optimized class loader'); if ($this->option('psr')) { $this->composer->dumpAutoloads(); } else { $this->composer->dumpOptimized(); } $this->call('clear-compiled'); } /** * Get the console command options. * * @return array */ protected function getOptions() { return [ ['force', null, InputOption::VALUE_NONE, 'Force the compiled class file to be written (deprecated).'], ['psr', null, InputOption::VALUE_NONE, 'Do not optimize Composer dump-autoload.'], ]; } }