tgbotlib/src/TgBotLib/Objects/GeneralForumTopicUnhidden.php
2024-10-04 21:17:18 -04:00

32 lines
No EOL
721 B
PHP

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