File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Broadcasting
Upload
[..]
BroadcastEvent.php (5.91 KB)
Edit
Rename
Del
Broadcasters/
Rename
Del
InteractsWithBroadcasting.php (931 B)
Edit
Rename
Del
InteractsWithSockets.php (669 B)
Edit
Rename
Del
Edit: InteractsWithBroadcasting.php
<?php namespace Illuminate\Broadcasting; use Illuminate\Support\Arr; use function Illuminate\Support\enum_value; trait InteractsWithBroadcasting { /** * The broadcaster connection to use to broadcast the event. * * @var array */ protected $broadcastConnection = [null]; /** * Broadcast the event using a specific broadcaster. * * @param \UnitEnum|array|string|null $connection * @return $this */ public function broadcastVia($connection = null) { $connection = enum_value($connection); $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; } }
Simpan