mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
17 lines
265 B
PHP
17 lines
265 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Album;
|
|
|
|
class AlbumObserver
|
|
{
|
|
public function deleted(Album $album): void
|
|
{
|
|
if (!$album->has_cover) {
|
|
return;
|
|
}
|
|
|
|
rescue(static fn () => unlink($album->cover_path));
|
|
}
|
|
}
|