Veranstaltungen-APP/vendor/laravel/framework/src/Illuminate/Broadcasting/PresenceChannel.php
2026-04-09 21:24:07 +02:00

17 lines
274 B
PHP

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