koel/app/Services/Streamer/Adapters/StreamerAdapter.php
2024-07-06 17:44:46 +02:00

10 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
}