mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
Change rebuild commands to rebuild:command
This commit is contained in:
parent
98e069e6a2
commit
eca01b5f29
3 changed files with 4 additions and 4 deletions
|
@ -24,14 +24,14 @@ use Illuminate\Console\Command;
|
|||
use Illuminate\Support\Facades\File;
|
||||
use Poniverse\Ponyfm\TrackFile;
|
||||
|
||||
class RebuildFilesize extends Command
|
||||
class RebuildFilesizes extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'filesize:rebuild
|
||||
protected $signature = 'rebuild:filesizes
|
||||
{--force : Skip all prompts.}';
|
||||
|
||||
/**
|
|
@ -37,7 +37,7 @@ class RebuildTrackCache extends Command
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'track-cache:rebuild
|
||||
protected $signature = 'rebuild:track-cache
|
||||
{--force : Skip all prompts.}';
|
||||
|
||||
/**
|
||||
|
|
|
@ -41,7 +41,7 @@ class Kernel extends ConsoleKernel
|
|||
\Poniverse\Ponyfm\Console\Commands\PoniverseApiSetup::class,
|
||||
\Poniverse\Ponyfm\Console\Commands\ClearTrackCache::class,
|
||||
\Poniverse\Ponyfm\Console\Commands\RebuildTrackCache::class,
|
||||
\Poniverse\Ponyfm\Console\Commands\RebuildFilesize::class,
|
||||
\Poniverse\Ponyfm\Console\Commands\RebuildFilesizes::class,
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue