We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a307e67 commit 466752dCopy full SHA for 466752d
1 file changed
src/Request.php
@@ -804,6 +804,22 @@ public static function editMessageCaption(array $data)
804
return self::send('editMessageCaption', $data);
805
}
806
807
+ /**
808
+ * Edit message reply markup
809
+ *
810
+ * @param array $data
811
812
+ * @return mixed
813
+ */
814
+ public static function editMessageReplyMarkup(array $data)
815
+ {
816
+ if (empty($data)) {
817
+ throw new TelegramException('Data is empty!');
818
+ }
819
+
820
+ return self::send('editMessageReplyMarkup', $data);
821
822
823
/**
824
* Get bot commands
825
*
0 commit comments