File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,11 @@ matrix:
19
19
include :
20
20
- php : 7.2
21
21
env : ' COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
22
+ - php : 7.4
23
+ env : ' COMPOSER_FLAGS="--ignore-platform-reqs"'
22
24
23
25
before_script :
24
- - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist --ignore-platform-reqs
26
+ - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
25
27
26
28
script :
27
29
- vendor/bin/phpcs --standard=psr2 src/
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
23
23
- Nothing
24
24
--->
25
25
26
+ ## 1.3.3 - 2020-03-06
27
+
28
+ ### Fixed
29
+ - fixed Poll field in MessageType. bug #24 .
30
+
26
31
## 1.3.2 - 2020-02-26
27
32
28
33
### Fixed
Original file line number Diff line number Diff line change @@ -229,6 +229,13 @@ class MessageType implements HasParseModeVariableInterface
229
229
*/
230
230
public $ venue ;
231
231
232
+ /**
233
+ * Optional. Message is a native poll, information about the poll.
234
+ *
235
+ * @var PollType|null
236
+ */
237
+ public $ poll ;
238
+
232
239
/**
233
240
* Optional. New members that were added to the group or supergroup and information about them
234
241
* (the bot itself may be one of these members).
You can’t perform that action at this time.
0 commit comments