Commit 075f0e86 authored by Jack'lul's avatar Jack'lul

this was removed

parent dc455054
......@@ -21,7 +21,6 @@ class InlineQueryResultGif extends InlineQueryResult
protected $thumb_url;
protected $title;
protected $caption;
protected $message_text;
public function __construct(array $data)
{
......@@ -44,7 +43,6 @@ class InlineQueryResultGif extends InlineQueryResult
$this->title = isset($data['title']) ? $data['title'] : null;
$this->caption = isset($data['caption']) ? $data['caption'] : null;
$this->message_text = isset($data['message_text']) ? $data['message_text'] : null;
}
......@@ -72,8 +70,4 @@ class InlineQueryResultGif extends InlineQueryResult
{
return $this->caption;
}
public function getMessageText()
{
return $this->message_text;
}
}
......@@ -21,7 +21,6 @@ class InlineQueryResultMpeg4Gif extends InlineQueryResult
protected $thumb_url;
protected $title;
protected $caption;
protected $message_text;
public function __construct(array $data)
{
......@@ -44,7 +43,6 @@ class InlineQueryResultMpeg4Gif extends InlineQueryResult
$this->title = isset($data['title']) ? $data['title'] : null;
$this->caption = isset($data['caption']) ? $data['caption'] : null;
$this->message_text = isset($data['message_text']) ? $data['message_text'] : null;
}
......@@ -72,8 +70,4 @@ class InlineQueryResultMpeg4Gif extends InlineQueryResult
{
return $this->caption;
}
public function getMessageText()
{
return $this->message_text;
}
}
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