Skip to content

Commit 5264f43

Browse files
committedApr 16, 2024
convenience methods
1 parent 3b2bf82 commit 5264f43

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed
 

‎src/Illuminate/Broadcasting/AnonymousBroadcastable.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class AnonymousBroadcastable implements ShouldBroadcast
3636
*
3737
* @return void
3838
*/
39-
public function __construct(protected string|array $channels)
39+
public function __construct(protected Channel|string|array $channels)
4040
{
4141
$this->channels = Arr::wrap($channels);
4242
}

‎src/Illuminate/Support/Facades/Broadcast.php

+20-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
namespace Illuminate\Support\Facades;
44

55
use Illuminate\Broadcasting\AnonymousBroadcastable;
6+
use Illuminate\Broadcasting\Channel;
7+
use Illuminate\Broadcasting\PresenceChannel;
8+
use Illuminate\Broadcasting\PrivateChannel;
69
use Illuminate\Contracts\Broadcasting\Factory as BroadcastingFactoryContract;
7-
use Illuminate\Support\Arr;
810

911
/**
1012
* @method static void routes(array|null $attributes = null)
@@ -50,8 +52,24 @@ protected static function getFacadeAccessor()
5052
/**
5153
* Begin sending a broadcast to the given channels.
5254
*/
53-
public static function on(string|array $channels): AnonymousBroadcastable
55+
public static function on(Channel|string|array $channels): AnonymousBroadcastable
5456
{
5557
return new AnonymousBroadcastable($channels);
5658
}
59+
60+
/**
61+
* Begin sending a broadcast to the given private channel.
62+
*/
63+
public static function private(string $channel): AnonymousBroadcastable
64+
{
65+
return static::on(new PrivateChannel($channel));
66+
}
67+
68+
/**
69+
* Begin sending a broadcast to the given presence channel.
70+
*/
71+
public static function presence(string $channel): AnonymousBroadcastable
72+
{
73+
return static::on(new PresenceChannel($channel));
74+
}
5775
}

‎tests/Integration/Broadcasting/SendingBroadcastsViaAnonymousBroadcastableTest.php

+27
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Illuminate\Tests\Integration\Broadcasting;
44

55
use Illuminate\Broadcasting\AnonymousBroadcastable;
6+
use Illuminate\Broadcasting\PresenceChannel;
67
use Illuminate\Broadcasting\PrivateChannel;
78
use Illuminate\Support\Facades\Broadcast as BroadcastFacade;
89
use Illuminate\Support\Facades\Event as EventFacade;
@@ -105,4 +106,30 @@ public function testSendToOthersOnly()
105106
return $event->socket = '12345';
106107
});
107108
}
109+
110+
public function testSendToPrivateChannel()
111+
{
112+
EventFacade::fake();
113+
114+
BroadcastFacade::private('test-channel')->send();
115+
116+
EventFacade::assertDispatched(AnonymousBroadcastable::class, function ($event) {
117+
$channel = $event->broadcastOn()[0];
118+
119+
return $channel instanceof PrivateChannel && $channel->name === 'private-test-channel';
120+
});
121+
}
122+
123+
public function testSendToPresenceChannel()
124+
{
125+
EventFacade::fake();
126+
127+
BroadcastFacade::presence('test-channel')->send();
128+
129+
EventFacade::assertDispatched(AnonymousBroadcastable::class, function ($event) {
130+
$channel = $event->broadcastOn()[0];
131+
132+
return $channel instanceof PresenceChannel && $channel->name === 'presence-test-channel';
133+
});
134+
}
108135
}

0 commit comments

Comments
 (0)