PATH:
home
/
lab2454c
/
westernclear.net
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Broadcasting
<?php namespace Illuminate\Broadcasting; use Illuminate\Support\Arr; trait InteractsWithBroadcasting { /** * The broadcaster connection to use to broadcast the event. * * @var array */ protected $broadcastConnection = [null]; /** * Broadcast the event using a specific broadcaster. * * @param array|string|null $connection * @return $this */ public function broadcastVia($connection = null) { $this->broadcastConnection = is_null($connection) ? [null] : Arr::wrap($connection); return $this; } /** * Get the broadcaster connections the event should be broadcast on. * * @return array */ public function broadcastConnections() { return $this->broadcastConnection; } }
[-] composer.json
[edit]
[-] InteractsWithBroadcasting.php
[edit]
[-] BroadcastEvent.php
[edit]
[+]
..
[-] EncryptedPrivateChannel.php
[edit]
[-] BroadcastServiceProvider.php
[edit]
[-] BroadcastController.php
[edit]
[-] Channel.php
[edit]
[-] BroadcastException.php
[edit]
[-] PresenceChannel.php
[edit]
[-] LICENSE.md
[edit]
[-] PendingBroadcast.php
[edit]
[-] PrivateChannel.php
[edit]
[-] InteractsWithSockets.php
[edit]
[-] BroadcastManager.php
[edit]
[+]
Broadcasters