Skip to content

Commit

Permalink
Set minimum php version to 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Stajor committed Mar 13, 2022
1 parent dbdd2e7 commit 8156514
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Telegram Bot",
"type": "library",
"require": {
"php": ">=7.4",
"php": ">=8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Message extends Type {
public ?string $media_group_id = null;
public ?string $author_signature = null;
public ?string $text = null;
public ?MessageEntity $entities = null;
public mixed $entities = null;
public ?Animation $animation = null;
public ?Audio $audio = null;
public ?Document $document = null;
Expand Down

0 comments on commit 8156514

Please sign in to comment.