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