tgbotlib/src/TgBotLib/Objects/GeneralForumTopicHidden.php
2024-10-04 21:16:48 -04:00

32 lines
No EOL
715 B
PHP

<?php
namespace TgBotLib\Objects;
use TgBotLib\Interfaces\ObjectTypeInterface;
class GeneralForumTopicHidden implements ObjectTypeInterface
{
// Note: This object represents a service message about General forum topic hidden in the chat.
// Currently, holds no information.
/**
* @inheritDoc
*/
public function toArray(): array
{
return [];
}
/**
* @inheritDoc
*/
public static function fromArray(?array $data): ?GeneralForumTopicHidden
{
if($data === null)
{
return null;
}
return new self();
}
}