BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
irazasyed
/
telegram-bot-sdk
/
src
/
Objects
📤 Upload
📝 New File
📁 New Folder
Close
Editing: UserProfilePhotos.php
<?php namespace Telegram\Bot\Objects; /** * Class UserProfilePhotos. * * @link https://core.telegram.org/bots/api#userprofilephotos * * @property int $totalCount Total number of profile pictures the target user has. * @property PhotoSize[] $photos Array of Array of PhotoSize. Requested profile pictures (in up to 4 sizes each). */ class UserProfilePhotos extends BaseObject { /** * {@inheritdoc} * * @return array{photos: string[]} */ public function relations(): array { return [ 'photos' => [PhotoSize::class], ]; } }
Save
Cancel