PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Broadcasting
/
Editing: EncryptedPrivateChannel.php
<?php namespace Illuminate\Broadcasting; class EncryptedPrivateChannel extends Channel { /** * Create a new channel instance. * * @param string $name * @return void */ public function __construct($name) { parent::__construct('private-encrypted-'.$name); } }
SAVE
CANCEL