This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace TgBotApi\BotApiBase\Normalizer; | |
use Symfony\Component\Serializer\Normalizer\NormalizerInterface; | |
use TgBotApi\BotApiBase\Method\SendPollMethod; | |
use Symfony\Component\Serializer\Serializer; | |
class SendPoollNormalizer implements NormalizerInterface |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
telegram.token: '%env(TELEGRAM_TOKEN)%' | |
telegram.webhook_secret: '%env(TELEGRAM_WEBHOOK_SECRET)%' | |
services: | |
GuzzleHttp\Client: | |
arguments: | |
- { timeout: 120} | |
Http\Factory\Guzzle\RequestFactory: |