Skip to content

Commit

Permalink
Remove unused parameter from joinVoiceChannel
Browse files Browse the repository at this point in the history
  • Loading branch information
valzargaming committed Nov 21, 2024
1 parent a9bb7fc commit a46e93a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Discord/Discord.php
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ public function getVoiceClient(string $guild_id): ?VoiceClient
*
* @return PromiseInterface<VoiceClient>
*/
public function joinVoiceChannel(Channel $channel, $mute = false, $deaf = true, ?LoggerInterface $logger = null, bool $check = true): PromiseInterface
public function joinVoiceChannel(Channel $channel, $mute = false, $deaf = true, ?LoggerInterface $logger = null): PromiseInterface
{
$deferred = new Deferred();

Expand Down

0 comments on commit a46e93a

Please sign in to comment.