🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:Channel.php
<?php namespace Illuminate\Broadcasting; use Illuminate\Contracts\Broadcasting\HasBroadcastChannel; use Stringable; class Channel implements Stringable { /** * The channel's name. * * @var string */ public $name; /** * Create a new channel instance. * * @param \Illuminate\Contracts\Broadcasting\HasBroadcastChannel|string $name */ public function __construct($name) { $this->name = $name instanceof HasBroadcastChannel ? $name->broadcastChannel() : $name; } /** * Convert the channel instance to a string. * * @return string */ public function __toString() { return $this->name; } }
Save Changes
Cancel
Create New File
Create New Folder