app/Services/ObjectStorageInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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;
}