PATH:
home
/
rwabteecom
/
public_html_olld
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Broadcasting
/
Editing: PresenceChannel.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); } }
SAVE
CANCEL