Skip to content

Commit 2791b19

Browse files
authored
Update BroadcastCommand.php
1 parent dbfdf96 commit 2791b19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Model/BroadcastCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ final class BroadcastCommand extends AbstractCommand
2626
* @param array<string, mixed> $tags
2727
* @param string $base64data
2828
*/
29-
public function __construct(array $data, private array $channels, bool $skipHistory = false, array $tags = [], string $base64data = '')
29+
public function __construct(array $data, array $channels, bool $skipHistory = false, array $tags = [], string $base64data = '')
3030
{
3131
$params = [
32-
'channels' => \array_values($channels),
32+
'channels' => $channels,
3333
'data' => $data,
3434
];
3535

0 commit comments

Comments
 (0)