koel/app/Services/ObjectStorageInterface.php
2018-08-29 13:15:24 +07:00

13 lines
234 B
PHP

<?php
namespace App\Services;
use App\Models\Song;
interface ObjectStorageInterface
{
/**
* Get a song's Object Storage url for streaming or downloading.
*/
public function getSongPublicUrl(Song $song): string;
}