app/Services/Streamers/StreamerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Services\Streamers;

use App\Models\Song;

interface StreamerInterface
{
    public function setSong(Song $song): void;

    public function stream(); // @phpcs:ignore
}