Change rebuild commands to rebuild:command

This commit is contained in:
Kelvin Zhang 2015-10-31 12:19:12 +00:00
parent 98e069e6a2
commit eca01b5f29
3 changed files with 4 additions and 4 deletions

View file

@ -24,14 +24,14 @@ use Illuminate\Console\Command;
use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\File;
use Poniverse\Ponyfm\TrackFile; use Poniverse\Ponyfm\TrackFile;
class RebuildFilesize extends Command class RebuildFilesizes extends Command
{ {
/** /**
* The name and signature of the console command. * The name and signature of the console command.
* *
* @var string * @var string
*/ */
protected $signature = 'filesize:rebuild protected $signature = 'rebuild:filesizes
{--force : Skip all prompts.}'; {--force : Skip all prompts.}';
/** /**

View file

@ -37,7 +37,7 @@ class RebuildTrackCache extends Command
* *
* @var string * @var string
*/ */
protected $signature = 'track-cache:rebuild protected $signature = 'rebuild:track-cache
{--force : Skip all prompts.}'; {--force : Skip all prompts.}';
/** /**

View file

@ -41,7 +41,7 @@ class Kernel extends ConsoleKernel
\Poniverse\Ponyfm\Console\Commands\PoniverseApiSetup::class, \Poniverse\Ponyfm\Console\Commands\PoniverseApiSetup::class,
\Poniverse\Ponyfm\Console\Commands\ClearTrackCache::class, \Poniverse\Ponyfm\Console\Commands\ClearTrackCache::class,
\Poniverse\Ponyfm\Console\Commands\RebuildTrackCache::class, \Poniverse\Ponyfm\Console\Commands\RebuildTrackCache::class,
\Poniverse\Ponyfm\Console\Commands\RebuildFilesize::class, \Poniverse\Ponyfm\Console\Commands\RebuildFilesizes::class,
]; ];
/** /**