mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
11 lines
179 B
PHP
11 lines
179 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services\Streamer\Adapters;
|
||
|
|
||
|
use App\Models\Song;
|
||
|
|
||
|
interface StreamerAdapter
|
||
|
{
|
||
|
public function stream(Song $song, array $config = []); // @phpcs:ignore
|
||
|
}
|