koel/app/Observers/SongObserver.php

15 lines
216 B
PHP
Raw Normal View History

2018-08-29 07:58:46 +00:00
<?php
namespace App\Observers;
use App\Models\Song;
use App\Services\Helper;
2018-08-29 07:58:46 +00:00
class SongObserver
{
public function creating(Song $song): void
2018-10-19 14:33:04 +00:00
{
$song->id = Helper::getFileHash($song->path);
2018-08-29 07:58:46 +00:00
}
}