Files
zibo-dashboard/vendor/laravel/framework/src/Illuminate/Broadcasting/PresenceChannel.php
T
2025-03-28 08:52:46 +01:00

18 lines
294 B
PHP

<?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);
}
}