Skip to content

Commit

Permalink
Update BroadcastCommand.php
Browse files Browse the repository at this point in the history
  • Loading branch information
fre5h authored Sep 11, 2024
1 parent 2791b19 commit a100a4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Model/BroadcastCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ final class BroadcastCommand extends AbstractCommand
* @param array<string, mixed> $tags
* @param string $base64data
*/
public function __construct(array $data, array $channels, bool $skipHistory = false, array $tags = [], string $base64data = '')
public function __construct(array $data, private array $channels, bool $skipHistory = false, array $tags = [], string $base64data = '')
{
$params = [
'channels' => $channels,
'channels' => \array_values($channels),
'data' => $data,
];

Expand Down

0 comments on commit a100a4a

Please sign in to comment.