koel/app/Services/Helper.php

15 lines
280 B
PHP

<?php
namespace App\Services;
class Helper
{
/**
* Get a unique hash from a file path.
* This hash can then be used as the Song record's ID.
*/
public function getFileHash(string $path): string
{
return md5(config('app.key') . $path);
}
}