vd/vendor/illuminate/broadcasting/PrivateChannel.php
2018-11-05 09:26:30 +08:00

18 lines
292 B
PHP

<?php
namespace Illuminate\Broadcasting;
class PrivateChannel extends Channel
{
/**
* Create a new channel instance.
*
* @param string $name
* @return void
*/
public function __construct($name)
{
parent::__construct('private-'.$name);
}
}