/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Broadcasting
NameSizeModeActions
Broadcasters/-0755rm
BroadcastController.php5630644editdlrm
BroadcastEvent.php33880644editdlrm
BroadcastException.php1270644editdlrm
BroadcastManager.php96200644editdlrm
BroadcastServiceProvider.php11710644editdlrm
Channel.php6890644editdlrm
composer.json11310644editdlrm
EncryptedPrivateChannel.php3110644editdlrm
InteractsWithBroadcasting.php8520644editdlrm
InteractsWithSockets.php6690644editdlrm
LICENSE.md10750644editdlrm
PendingBroadcast.php15020644editdlrm
PresenceChannel.php2940644editdlrm
PrivateChannel.php4980644editdlrm
Edit: /var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Broadcasting/PendingBroadcast.php (1502B)
event = $event; $this->events = $events; } /** * Broadcast the event using a specific broadcaster. * * @param string|null $connection * @return $this */ public function via($connection = null) { if (method_exists($this->event, 'broadcastVia')) { $this->event->broadcastVia($connection); } return $this; } /** * Broadcast the event to everyone except the current user. * * @return $this */ public function toOthers() { if (method_exists($this->event, 'dontBroadcastToCurrentUser')) { $this->event->dontBroadcastToCurrentUser(); } return $this; } /** * Handle the object's destruction. * * @return void */ public function __destruct() { $this->events->dispatch($this->event); } }