Refactored Namespace
This commit is contained in:
parent
45edd758a1
commit
1ef4e52a46
99 changed files with 136 additions and 136 deletions
|
@ -1,103 +0,0 @@
|
|||
<?php
|
||||
|
||||
/** @noinspection PhpMissingFieldTypeInspection */
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
||||
class ForumTopic implements ObjectTypeInterface
|
||||
{
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
private $message_thread_id;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $name;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
private $icon_color;
|
||||
|
||||
/**
|
||||
* @var string|null
|
||||
*/
|
||||
private $icon_custom_emoji_id;
|
||||
|
||||
/**
|
||||
* Unique identifier of the forum topic
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getMessageThreadId(): int
|
||||
{
|
||||
return $this->message_thread_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Name of the topic
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getName(): string
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Color of the topic icon in RGB format
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getIconColor(): int
|
||||
{
|
||||
return $this->icon_color;
|
||||
}
|
||||
|
||||
/**
|
||||
* Optional. Unique identifier of the custom emoji shown as the topic icon
|
||||
*
|
||||
* @return string|null
|
||||
*/
|
||||
public function getIconCustomEmojiId(): ?string
|
||||
{
|
||||
return $this->icon_custom_emoji_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array representation of the object
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function toArray(): array
|
||||
{
|
||||
return [
|
||||
'message_thread_id' => $this->message_thread_id,
|
||||
'name' => $this->name,
|
||||
'icon_color' => $this->icon_color,
|
||||
'icon_custom_emoji_id' => $this->icon_custom_emoji_id,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs object from an array representation
|
||||
*
|
||||
* @param array $data
|
||||
* @return ObjectTypeInterface
|
||||
*/
|
||||
public static function fromArray(array $data): ObjectTypeInterface
|
||||
{
|
||||
$object = new self();
|
||||
|
||||
$object->message_thread_id = $data['message_thread_id'] ?? null;
|
||||
$object->name = $data['name'] ?? null;
|
||||
$object->icon_color = $data['icon_color'] ?? null;
|
||||
$object->icon_custom_emoji_id = $data['icon_custom_emoji_id'] ?? null;
|
||||
|
||||
return $object;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue