koel/app/Services/Streamers/StreamerInterface.php

14 lines
199 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
2017-04-20 11:20:32 +00:00
namespace App\Services\Streamers;
2015-12-13 04:42:28 +00:00
2018-08-22 17:59:14 +00:00
use App\Models\Song;
2015-12-13 04:42:28 +00:00
interface StreamerInterface
{
2019-07-04 19:50:27 +00:00
public function setSong(Song $song): void;
2018-08-22 17:59:36 +00:00
2020-12-22 20:11:22 +00:00
/** @return mixed */
2015-12-13 04:42:28 +00:00
public function stream();
}