Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-ivona committed Dec 23, 2024
1 parent fdcbba0 commit 5ea54a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DTO/ReactionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private function __construct()
/**
* @param array{
* type: string,
* emoji: string,
* emoji?: string,
* custom_emoji_id?: string
* } $data
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Handlers/WebhookHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ protected function extractReactionData(): void

$this->messageId = $this->reaction->id();

$this->data = collect($this->reaction->newReaction());
$this->data = $this->reaction->newReaction();
}

protected function handleChatMemberJoined(User $member): void
Expand Down

0 comments on commit 5ea54a5

Please sign in to comment.