koel/app/Console/Commands/PruneLibraryCommand.php
2024-07-06 17:44:58 +02:00

25 lines
558 B
PHP

<?php
namespace App\Console\Commands;
use App\Services\LibraryManager;
use Illuminate\Console\Command;
class PruneLibraryCommand extends Command
{
protected $signature = 'koel:prune';
protected $description = 'Remove empty artists and albums';
public function __construct(private readonly LibraryManager $libraryManager)
{
parent::__construct();
}
public function handle(): int
{
$this->libraryManager->prune();
$this->info('Empty artists and albums removed.');
return self::SUCCESS;
}
}