koel/app/Services/Streamer/Adapters/StreamerAdapter.php

11 lines
179 B
PHP
Raw Normal View History

2024-02-24 07:28:49 +00:00
<?php
namespace App\Services\Streamer\Adapters;
use App\Models\Song;
interface StreamerAdapter
{
public function stream(Song $song, array $config = []); // @phpcs:ignore
}