koel/app/Console/Commands/TidyLibraryCommand.php

19 lines
342 B
PHP
Raw Normal View History

2020-06-07 20:43:04 +00:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class TidyLibraryCommand extends Command
{
protected $signature = 'koel:tidy';
2021-12-10 15:22:35 +00:00
protected $hidden = true;
2020-06-07 20:43:04 +00:00
2022-07-29 06:47:10 +00:00
public function handle(): int
2020-06-07 20:43:04 +00:00
{
2021-12-10 15:22:35 +00:00
$this->warn('koel:tidy has been renamed. Use koel:prune instead.');
2022-07-29 06:47:10 +00:00
return self::SUCCESS;
2020-06-07 20:43:04 +00:00
}
}