Skip to content

Commit 2e557d7

Browse files
authored
Update Event.php
1 parent e0f4340 commit 2e557d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Event.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,18 @@ public static function connectionEstablished(Event $event): bool
9393
return $event->getEvent() === 'pusher:connection_established';
9494
}
9595

96-
public static function subscribeOn(string $channel, string $authKey = null): array
96+
public static function subscribeOn(string $channel, string $authKey = null, string $channelData = null): array
9797
{
9898
$data = ['channel' => $channel];
9999

100100
if ($authKey) {
101101
$data['auth'] = $authKey;
102102
}
103103

104+
if ($channelData) {
105+
$data['channel_data'] = $channelData;
106+
}
107+
104108
return ['event' => 'pusher:subscribe', 'data' => $data];
105109
}
106110

0 commit comments

Comments
 (0)