Moved Objects

This commit is contained in:
netkas 2024-10-02 00:18:12 -04:00
parent 848a2a78e3
commit 6c67e97a4b
167 changed files with 368 additions and 373 deletions

View file

@ -1,52 +0,0 @@
<?php
/** @noinspection PhpMissingFieldTypeInspection */
namespace TgBotLib\Objects\Telegram;
use TgBotLib\Interfaces\ObjectTypeInterface;
class BotShortDescription implements ObjectTypeInterface
{
/**
* @var string
*/
private $short_description;
/**
* The bot's short description
*
* @return string
*/
public function getShortDescription(): string
{
return $this->short_description;
}
/**
* Returns an array representation of the object
*
* @return array
*/
public function toArray(): array
{
return [
'short_description' => $this->short_description,
];
}
/**
* Constructs object from an array representation
*
* @param array $data
* @return BotShortDescription
*/
public static function fromArray(array $data): self
{
$object = new self();
$object->short_description = $data['short_description'];
return $object;
}
}