koel/app/Services/Streamers/StreamerInterface.php

13 lines
191 B
PHP
Raw Normal View History

2015-12-13 12:42:28 +08:00
<?php
2017-04-20 19:20:32 +08:00
namespace App\Services\Streamers;
2015-12-13 12:42:28 +08:00
2018-08-22 19:59:14 +02:00
use App\Models\Song;
2015-12-13 12:42:28 +08:00
interface StreamerInterface
{
2019-07-04 21:50:27 +02:00
public function setSong(Song $song): void;
2018-08-22 19:59:36 +02:00
2021-06-05 12:47:56 +02:00
public function stream(); // @phpcs:ignore
2015-12-13 12:42:28 +08:00
}