Unverified Commit 718122f7 authored by Avtandil Kikabidze's avatar Avtandil Kikabidze Committed by Armando Lüscher

Fix some issues

parent dc11ca15
...@@ -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