Files
apimacro/vendor/laravel/framework/src/Illuminate/Broadcasting/PresenceChannel.php

18 lines
294 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace Illuminate\Broadcasting;
class PresenceChannel extends Channel
{
/**
* Create a new channel instance.
*
* @param string $name
* @return void
*/
public function __construct($name)
{
parent::__construct('presence-'.$name);
}
}