4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-15 13:46:37 +00:00
AzuraCast/src/Radio/Remote/AdapterProxy.php
2021-07-19 00:53:45 -05:00

27 lines
429 B
PHP

<?php
declare(strict_types=1);
namespace App\Radio\Remote;
use App\Entity;
class AdapterProxy
{
public function __construct(
protected AbstractRemote $adapter,
protected Entity\StationRemote $remote
) {
}
public function getAdapter(): AbstractRemote
{
return $this->adapter;
}
public function getRemote(): Entity\StationRemote
{
return $this->remote;
}
}