for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Greenplugin\TelegramBot\Method;
/**
* Class GetStickerSetMethod.
*
* @see https://core.telegram.org/bots/api#getstickerset
*/
class GetStickerSetMethod
{
* Name of the sticker set.
* @var string
public $name;
* GetStickerSetMethod constructor.
* @param string $name
public function __construct(string $name)
$this->name = $name;
}