Broadcaster.php
1 month ago
Factory.php
2 years ago
HasBroadcastChannel.php
2 years ago
ShouldBeUnique.php
1 month ago
ShouldBroadcast.php
2 years ago
ShouldBroadcastNow.php
2 years ago
HasBroadcastChannel.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Broadcasting; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface HasBroadcastChannel |
| 7 | { |
| 8 | /** |
| 9 | * Get the broadcast channel route definition that is associated with the given entity. |
| 10 | * |
| 11 | * @return string |
| 12 | */ |
| 13 | public function broadcastChannelRoute(); |
| 14 | /** |
| 15 | * Get the broadcast channel name that is associated with the given entity. |
| 16 | * |
| 17 | * @return string |
| 18 | */ |
| 19 | public function broadcastChannel(); |
| 20 | } |
| 21 |