Skip to content

Commit

Permalink
cs-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Oct 24, 2023
1 parent a22d0a8 commit e6fc4a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,8 @@ private function methodAbstractions(string &$method, array &$arguments): void
'reply_to_msg_id' => $arguments['reply_to_msg_id'],
'top_msg_id' => $arguments['top_msg_id'] ?? null
];
unset($arguments['reply_to_msg_id']);
unset($arguments['top_msg_id']);
unset($arguments['reply_to_msg_id'], $arguments['top_msg_id']);

}
}
/**
Expand Down

0 comments on commit e6fc4a4

Please sign in to comment.