| 1 | <?php |
||
| 14 | class WebHookController extends AbstractController |
||
| 15 | { |
||
| 16 | /** @var string */ |
||
| 17 | private $telegramToken; |
||
| 18 | |||
| 19 | /** @var bool */ |
||
| 20 | private $debug; |
||
| 21 | |||
| 22 | public function __construct(string $telegramToken, bool $debug) |
||
| 27 | |||
| 28 | public function receiveUpdateAction(Request $request, string $token, IncomingUpdateDispatcher $updateDispatcher, Logger $logger): Response |
||
| 60 | } |
||
| 61 |