koel/app/Console/Commands/TidyLibraryCommand.php
2021-12-10 16:23:04 +01:00

16 lines
312 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(): void
{
$this->warn('koel:tidy has been renamed. Use koel:prune instead.');
}
}