| Total Complexity | 5 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class ChatsNearby extends TdObject |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'chatsNearby'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * List of users nearby. |
||
| 20 | * |
||
| 21 | * @var ChatNearby[] |
||
| 22 | */ |
||
| 23 | protected array $usersNearby; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * List of location-based supergroups nearby. |
||
| 27 | * |
||
| 28 | * @var ChatNearby[] |
||
| 29 | */ |
||
| 30 | protected array $supergroupsNearby; |
||
| 31 | |||
| 32 | public function __construct(array $usersNearby, array $supergroupsNearby) |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function fromArray(array $array): ChatsNearby |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 46 | public function typeSerialize(): array |
||
| 47 | { |
||
| 48 | return [ |
||
| 49 | '@type' => static::TYPE_NAME, |
||
| 50 | array_map(fn ($x) => $x->typeSerialize(), $this->usersNearby), |
||
| 51 | array_map(fn ($x) => $x->typeSerialize(), $this->supergroupsNearby), |
||
| 52 | ]; |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getUsersNearby(): array |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getSupergroupsNearby(): array |
||
| 65 |