mirror of
https://github.com/koel/koel
synced 2024-12-22 02:23:14 +00:00
12 lines
228 B
PHP
12 lines
228 B
PHP
<?php
|
|
|
|
namespace App\Services\SongStorage;
|
|
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
use Illuminate\Http\UploadedFile;
|
|
|
|
interface SongStorage
|
|
{
|
|
public function storeUploadedFile(UploadedFile $file, User $uploader): Song;
|
|
}
|