Skip to content

Commit

Permalink
Use proper var name for application emoji delete call
Browse files Browse the repository at this point in the history
  • Loading branch information
Exanlv authored Sep 26, 2024
1 parent 6368a1a commit f44a12f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Rest/Emoji.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,13 @@ public function modifyApplicationEmoji(
* @return ExtendedPromiseInterface<void>
*/
public function deleteApplicationEmoji(
string $guildId,
string $applicationId,
string $emojiId,
): ExtendedPromiseInterface {
return $this->http->delete(
Endpoint::bind(
'applications/:application/emojis/:emoji',
$guildId,
$applicationId,
$emojiId
),
)->otherwise($this->logThrowable(...));
Expand Down

0 comments on commit f44a12f

Please sign in to comment.