File "PublishCommand.php"

Full Path: /var/www/drive/laravel/horizon/src/Console/PublishCommand.php
File size: 749 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Horizon\Console;

use Illuminate\Console\Command;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand(name: 'horizon:publish')]
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->components->warn('Horizon no longer publishes its assets. You may stop calling the `horizon:publish` command.');
    }
}