laravel-websockets/src/LaravelEcho/Pusher/Channels/Channel.php

21 lines
331 B
PHP
Raw Normal View History

2018-11-21 11:13:40 +00:00
<?php
namespace BeyondCode\LaravelWebSockets\LaravelEcho\Pusher\Channels;
use Ratchet\ConnectionInterface;
class Channel
{
protected $channelId;
public function __construct($channelId)
{
$this->channelId = $channelId;
}
public function subscribe(ConnectionInterface $conn, $payload)
{
}
}