laravel/framework

View on GitHub
src/Illuminate/Broadcasting/PresenceChannel.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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);
    }
}