mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
18 lines
342 B
PHP
18 lines
342 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class TidyLibraryCommand extends Command
|
|
{
|
|
protected $signature = 'koel:tidy';
|
|
protected $hidden = true;
|
|
|
|
public function handle(): int
|
|
{
|
|
$this->warn('koel:tidy has been renamed. Use koel:prune instead.');
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
}
|