Refactored Namespace

This commit is contained in:
Netkas 2023-02-14 17:41:38 -05:00
parent 45edd758a1
commit 1ef4e52a46
99 changed files with 136 additions and 136 deletions

View file

@ -1,32 +0,0 @@
<?php
namespace TgBotLib\Objects;
use TgBotLib\Interfaces\ObjectTypeInterface;
class ForumTopicClosed implements ObjectTypeInterface
{
// Note: This object represents a service message about a forum topic closed in the chat.
// Currently, holds no information.
/**
* Returns array representation of object
*
* @return array
*/
public function toArray(): array
{
return [];
}
/**
* Returns object from array
*
* @param array $data
* @return ObjectTypeInterface
*/
public static function fromArray(array $data): ObjectTypeInterface
{
return new self();
}
}