Skip to content

Commit

Permalink
Merge pull request #696 from dwightwatson/publish-master
Browse files Browse the repository at this point in the history
[4.x] Rename asset command
  • Loading branch information
taylorotwell authored Oct 28, 2019
2 parents d9aaca1 + 3cf374d commit a88f2b4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@

use Illuminate\Console\Command;

class AssetsCommand extends Command
class PublishCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'horizon:assets';
protected $signature = 'horizon:publish';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Re-publish the Horizon assets';
protected $description = 'Publish all of the Horizon resources';

/**
* Execute the console command.
Expand Down
8 changes: 4 additions & 4 deletions src/HorizonServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ protected function registerCommands()
{
if ($this->app->runningInConsole()) {
$this->commands([
Console\InstallCommand::class,
Console\AssetsCommand::class,
Console\ContinueCommand::class,
Console\HorizonCommand::class,
Console\InstallCommand::class,
Console\ListCommand::class,
Console\PurgeCommand::class,
Console\PauseCommand::class,
Console\ContinueCommand::class,
Console\PublishCommand::class,
Console\PurgeCommand::class,
Console\StatusCommand::class,
Console\SupervisorCommand::class,
Console\SupervisorsCommand::class,
Expand Down

0 comments on commit a88f2b4

Please sign in to comment.