Unverified Commit 12e0c846 authored by Armando Lüscher's avatar Armando Lüscher Committed by GitHub

Merge branch 'develop' into bot_api_4.0_passport

parents 32afb850 f76bee44
...@@ -15,6 +15,7 @@ php: ...@@ -15,6 +15,7 @@ php:
- 7.0 - 7.0
- 7.1 - 7.1
- 7.2 - 7.2
- 7.3
- nightly - nightly
- hhvm - hhvm
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "5de2cba6be3a7bf64809f63e550c0e29", "content-hash": "b480d20ffb4afc92ada1cf9b85d77e83",
"packages": [ "packages": [
{ {
"name": "guzzlehttp/guzzle", "name": "guzzlehttp/guzzle",
......
...@@ -10,8 +10,10 @@ ...@@ -10,8 +10,10 @@
namespace Longman\TelegramBot\Entities\Games; namespace Longman\TelegramBot\Entities\Games;
use Longman\TelegramBot\Entities\Animation;
use Longman\TelegramBot\Entities\Entity; use Longman\TelegramBot\Entities\Entity;
use Longman\TelegramBot\Entities\MessageEntity; use Longman\TelegramBot\Entities\MessageEntity;
use Longman\TelegramBot\Entities\PhotoSize;
/** /**
* Class Game * Class Game
...@@ -45,7 +47,7 @@ class Game extends Entity ...@@ -45,7 +47,7 @@ class Game extends Entity
* This method overrides the default getPhoto method * This method overrides the default getPhoto method
* and returns a nice array of PhotoSize objects. * and returns a nice array of PhotoSize objects.
* *
* @return null|PhotoSize[] * @return null|\Longman\TelegramBot\Entities\PhotoSize[]
*/ */
public function getPhoto() public function getPhoto()
{ {
...@@ -60,7 +62,7 @@ class Game extends Entity ...@@ -60,7 +62,7 @@ class Game extends Entity
* This method overrides the default getTextEntities method * This method overrides the default getTextEntities method
* and returns a nice array of MessageEntity objects. * and returns a nice array of MessageEntity objects.
* *
* @return null|MessageEntity[] * @return null|\Longman\TelegramBot\Entities\MessageEntity[]
*/ */
public function getTextEntities() public function getTextEntities()
{ {
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
namespace Longman\TelegramBot\Entities\Games; namespace Longman\TelegramBot\Entities\Games;
use Longman\TelegramBot\Entities\Entity; use Longman\TelegramBot\Entities\Entity;
use Longman\TelegramBot\Entities\User;
/** /**
* Class GameHighScore * Class GameHighScore
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment