Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
laravel
/
horizon
/
src
/
Console
/
Editing: 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, ]); } }
Save
Cancel