From 1b54f06767974f63b64ddf54972fc21038334973 Mon Sep 17 00:00:00 2001 From: Alex B Date: Tue, 15 Mar 2022 18:08:22 +0200 Subject: [PATCH] FIX Telegram\Bot\Types\MessageEntity to property Telegram\Bot\Types\Poll::$explanation_entities of type array --- src/Types/Poll.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Types/Poll.php b/src/Types/Poll.php index 8da53fd..9858831 100644 --- a/src/Types/Poll.php +++ b/src/Types/Poll.php @@ -18,7 +18,7 @@ class Poll extends Type { public bool $allows_multiple_answers; public int $correct_option_id; public string $explanation; - public array $explanation_entities; + public mixed $explanation_entities; public int $open_period; public int $close_date; }