%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/laravel/horizon/src/Console/ |
Current File : /home/graphicd/public_html/vebto/vendor/laravel/horizon/src/Console/PublishCommand.php |
<?php namespace Laravel\Horizon\Console; use Illuminate\Console\Command; class PublishCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'horizon:publish'; /** * The console command description. * * @var string */ protected $description = 'Publish all of the Horizon resources'; /** * Execute the console command. * * @return void */ public function handle() { $this->call('vendor:publish', [ '--tag' => 'horizon-assets', '--force' => true, ]); } }