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
Factory.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Broadcasting; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface Factory |
| 7 | { |
| 8 | /** |
| 9 | * Get a broadcaster implementation by name. |
| 10 | * |
| 11 | * @param string|null $name |
| 12 | * @return \Illuminate\Contracts\Broadcasting\Broadcaster |
| 13 | */ |
| 14 | public function connection($name = null); |
| 15 | } |
| 16 |