koel/app/Console/Commands/TidyLibraryCommand.php
2022-07-29 09:04:44 +02:00

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;
}
}