koel/app/Services/Contracts/ObjectStorageInterface.php

14 lines
244 B
PHP
Raw Normal View History

2018-08-29 04:06:17 +00:00
<?php
namespace App\Services\Contracts;
2018-08-29 04:06:17 +00:00
use App\Models\Song;
interface ObjectStorageInterface
{
/**
* Get a song's Object Storage url for streaming or downloading.
*/
public function getSongPublicUrl(Song $song): string;
}