koel/app/Services/ObjectStorageInterface.php

14 lines
234 B
PHP
Raw Normal View History

2018-08-29 04:06:17 +00:00
<?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;
}