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

@ -0,0 +1,40 @@
<?php
namespace TgBotLib\Objects;
use TgBotLib\Interfaces\ObjectTypeInterface;
class ChatBoostAdded implements ObjectTypeInterface
{
private int $boost_count;
/**
* Number of boosts added by the user
*
* @return int
*/
public function getBoostCount(): int
{
return $this->boost_count;
}
/**
* @inheritDoc
*/
public function toArray(): array
{
return [
'boost_count' => $this->boost_count
];
}
/**
* @inheritDoc
*/
public static function fromArray(array $data): ObjectTypeInterface
{
$object = new self();
$object->boost_count = $data['boost_count'];
return $object;
}
}