@@ -26,15 +26,15 @@ |
||
26 | 26 | InlineKeyboardMarkup|ReplyKeyboardMarkup|ReplyKeyboardRemove|ForceReply|null $replyMarkup = null |
27 | 27 | ): PromiseInterface { |
28 | 28 | return $this->api->sendMessage( |
29 | - chatId: $this->id, |
|
30 | - text: $text, |
|
31 | - parseMode: $parseMode, |
|
32 | - entities: $entities, |
|
33 | - disableWebPagePreview: $disableWebPagePreview, |
|
34 | - disableNotification: $disableNotification, |
|
35 | - replyToMessageId: $replyToMessageId, |
|
36 | - allowSendingWithoutReply: $allowSendingWithoutReply, |
|
37 | - replyMarkup: $replyMarkup |
|
29 | + chatId : $this->id, |
|
30 | + text : $text, |
|
31 | + parseMode : $parseMode, |
|
32 | + entities : $entities, |
|
33 | + disableWebPagePreview : $disableWebPagePreview, |
|
34 | + disableNotification : $disableNotification, |
|
35 | + replyToMessageId : $replyToMessageId, |
|
36 | + allowSendingWithoutReply : $allowSendingWithoutReply, |
|
37 | + replyMarkup : $replyMarkup |
|
38 | 38 | ); |
39 | 39 | } |
40 | 40 |
@@ -19,11 +19,11 @@ |
||
19 | 19 | $this->gifFileId ?? $this->mpeg4FileId ?? $this->photoFileId ?? $this->stickerFileId ?? $this->videoFileId ?? |
20 | 20 | $this->voiceFileId ?? $this->fileId; |
21 | 21 | return $this->api->getFile($fileId)->then( |
22 | - function (File $file) { |
|
22 | + function(File $file) { |
|
23 | 23 | return $this->api->downloadFile($file->filePath); |
24 | 24 | } |
25 | 25 | )->then( |
26 | - function (StreamInterface $stream) use ($path) { |
|
26 | + function(StreamInterface $stream) use ($path) { |
|
27 | 27 | return file_put_contents($path, $stream); |
28 | 28 | } |
29 | 29 | ); |
@@ -18,11 +18,11 @@ |
||
18 | 18 | ?int $cacheTime = null |
19 | 19 | ): PromiseInterface { |
20 | 20 | return $this->api->answerCallbackQuery( |
21 | - callbackQueryId: $this->id, |
|
22 | - text: $text, |
|
23 | - showAlert: $showAlert, |
|
24 | - url: $url, |
|
25 | - cacheTime: $cacheTime |
|
21 | + callbackQueryId : $this->id, |
|
22 | + text : $text, |
|
23 | + showAlert : $showAlert, |
|
24 | + url : $url, |
|
25 | + cacheTime : $cacheTime |
|
26 | 26 | ); |
27 | 27 | } |
28 | 28 |
@@ -67,25 +67,25 @@ |
||
67 | 67 | public function editMedia(InputMedia $media, ?InlineKeyboardMarkup $replyMarkup = null): PromiseInterface |
68 | 68 | { |
69 | 69 | return $this->api->editMessageMedia( |
70 | - media: $media, |
|
71 | - chatId: $this->chat->id, |
|
72 | - messageId: $this->messageId, |
|
73 | - replyMarkup: $replyMarkup |
|
70 | + media : $media, |
|
71 | + chatId : $this->chat->id, |
|
72 | + messageId : $this->messageId, |
|
73 | + replyMarkup : $replyMarkup |
|
74 | 74 | ); |
75 | 75 | } |
76 | 76 | |
77 | 77 | public function editReplyMarkup(?InlineKeyboardMarkup $replyMarkup = null): PromiseInterface |
78 | 78 | { |
79 | 79 | return $this->api->editMessageReplyMarkup( |
80 | - chatId: $this->chat->id, |
|
81 | - messageId: $this->messageId, |
|
82 | - replyMarkup: $replyMarkup |
|
80 | + chatId : $this->chat->id, |
|
81 | + messageId : $this->messageId, |
|
82 | + replyMarkup : $replyMarkup |
|
83 | 83 | ); |
84 | 84 | } |
85 | 85 | |
86 | 86 | public function stopPoll(?InlineKeyboardMarkup $replyMarkup = null): PromiseInterface |
87 | 87 | { |
88 | - return $this->api->stopPoll(chatId: $this->chat->id, messageId: $this->messageId, replyMarkup: $replyMarkup); |
|
88 | + return $this->api->stopPoll(chatId : $this->chat->id, messageId : $this->messageId, replyMarkup : $replyMarkup); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | } |
92 | 92 | \ No newline at end of file |
@@ -15,10 +15,10 @@ |
||
15 | 15 | public function edit(int|string $chatId, ?int $expireDate = null, ?int $memberLimit = null): PromiseInterface |
16 | 16 | { |
17 | 17 | return $this->api->editChatInviteLink( |
18 | - chatId: $chatId, |
|
19 | - inviteLink: $this->inviteLink, |
|
20 | - expireDate: $expireDate, |
|
21 | - memberLimit: $memberLimit |
|
18 | + chatId : $chatId, |
|
19 | + inviteLink : $this->inviteLink, |
|
20 | + expireDate : $expireDate, |
|
21 | + memberLimit : $memberLimit |
|
22 | 22 | ); |
23 | 23 | } |
24 | 24 |
@@ -23,10 +23,10 @@ discard block |
||
23 | 23 | $client = $this->client; |
24 | 24 | $uri = sprintf('/file/bot%s/%s', $this->token, $remotePath); |
25 | 25 | return $client->getAsync($uri)->then( |
26 | - function (ResponseInterface $response) { |
|
26 | + function(ResponseInterface $response) { |
|
27 | 27 | return $response->getBody(); |
28 | 28 | }, |
29 | - function (RequestException $e) { |
|
29 | + function(RequestException $e) { |
|
30 | 30 | $message = sprintf( |
31 | 31 | 'An unknown error occurred when trying to fetch the file (%s): %s', |
32 | 32 | $e->getCode(), |
@@ -35,11 +35,11 @@ discard block |
||
35 | 35 | if (!$e->hasResponse()) { |
36 | 36 | throw new TelegramAPIException($message); |
37 | 37 | } |
38 | - $data = json_decode($e->getResponse()?->getBody()); |
|
38 | + $data = json_decode($e->getResponse() ? ->getBody()); |
|
39 | 39 | if (empty($data)) { |
40 | 40 | throw new TelegramAPIException($message); |
41 | 41 | } |
42 | - match ($data->error_code) { |
|
42 | + match($data->error_code) { |
|
43 | 43 | 400 => throw new TelegramBadRequestException($data->description), |
44 | 44 | 401 => throw new TelegramUnauthorizedException('Token invalid or expired'), |
45 | 45 | 403 => throw new TelegramForbiddenException($data->description), |
@@ -91,7 +91,7 @@ |
||
91 | 91 | { |
92 | 92 | $result = []; |
93 | 93 | foreach (self::TYPES_MAP as $flag => $type) { |
94 | - if ($types & $flag) { |
|
94 | + if ($types&$flag) { |
|
95 | 95 | $result[] = $type; |
96 | 96 | } |
97 | 97 | } |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | |
18 | 18 | public function add(?BotCommandScope $scope = null, ?string $languageCode = null): ?PromiseInterface |
19 | 19 | { |
20 | - return $this->api?->getMyCommands(scope: $scope, languageCode: $languageCode)->then( |
|
21 | - function (array $commands) use ($scope, $languageCode) { |
|
20 | + return $this->api ? ->getMyCommands(scope : $scope, languageCode : $languageCode)->then( |
|
21 | + function(array $commands) use ($scope, $languageCode) { |
|
22 | 22 | $commands = array_merge($commands, [$this]); |
23 | 23 | return $this->api->setMyCommands(commands: $commands, scope: $scope, languageCode: $languageCode); |
24 | 24 | } |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | |
28 | 28 | public function remove(?BotCommandScope $scope = null, ?string $languageCode = null): ?PromiseInterface |
29 | 29 | { |
30 | - return $this->api?->getMyCommands(scope: $scope, languageCode: $languageCode)->then( |
|
31 | - function (array $commands) use ($scope, $languageCode) { |
|
30 | + return $this->api ? ->getMyCommands(scope : $scope, languageCode : $languageCode)->then( |
|
31 | + function(array $commands) use ($scope, $languageCode) { |
|
32 | 32 | $commands = array_udiff( |
33 | 33 | $commands, |
34 | 34 | [$this], |
@@ -14,19 +14,19 @@ discard block |
||
14 | 14 | public function ban(int|string $chatId, ?int $untilDate = null, ?bool $revokeMessages = null): PromiseInterface |
15 | 15 | { |
16 | 16 | return $this->api->banChatMember( |
17 | - chatId: $chatId, |
|
18 | - userId: $this->id, |
|
19 | - untilDate: $untilDate, |
|
20 | - revokeMessages: $revokeMessages |
|
17 | + chatId : $chatId, |
|
18 | + userId : $this->id, |
|
19 | + untilDate : $untilDate, |
|
20 | + revokeMessages : $revokeMessages |
|
21 | 21 | ); |
22 | 22 | } |
23 | 23 | |
24 | 24 | public function unban(int|string $chatId, ?bool $onlyIfBanned = null): PromiseInterface |
25 | 25 | { |
26 | 26 | return $this->api->unbanChatMember( |
27 | - chatId: $chatId, |
|
28 | - userId: $this->id, |
|
29 | - onlyIfBanned: $onlyIfBanned |
|
27 | + chatId : $chatId, |
|
28 | + userId : $this->id, |
|
29 | + onlyIfBanned : $onlyIfBanned |
|
30 | 30 | ); |
31 | 31 | } |
32 | 32 | |
@@ -45,19 +45,19 @@ discard block |
||
45 | 45 | ?bool $canPinMessages = null |
46 | 46 | ): PromiseInterface { |
47 | 47 | return $this->api->promoteChatMember( |
48 | - chatId: $chatId, |
|
49 | - userId: $this->id, |
|
50 | - isAnonymous: $isAnonymous, |
|
51 | - canManageChat: $canManageChat, |
|
52 | - canPostMessages: $canPostMessages, |
|
53 | - canEditMessages: $canEditMessages, |
|
54 | - canDeleteMessages: $canDeleteMessages, |
|
55 | - canManageVoiceChats: $canManageVoiceChats, |
|
56 | - canRestrictMembers: $canRestrictMembers, |
|
57 | - canPromoteMembers: $canPromoteMembers, |
|
58 | - canChangeInfo: $canChangeInfo, |
|
59 | - canInviteUsers: $canInviteUsers, |
|
60 | - canPinMessages: $canPinMessages |
|
48 | + chatId : $chatId, |
|
49 | + userId : $this->id, |
|
50 | + isAnonymous : $isAnonymous, |
|
51 | + canManageChat : $canManageChat, |
|
52 | + canPostMessages : $canPostMessages, |
|
53 | + canEditMessages : $canEditMessages, |
|
54 | + canDeleteMessages : $canDeleteMessages, |
|
55 | + canManageVoiceChats : $canManageVoiceChats, |
|
56 | + canRestrictMembers : $canRestrictMembers, |
|
57 | + canPromoteMembers : $canPromoteMembers, |
|
58 | + canChangeInfo : $canChangeInfo, |
|
59 | + canInviteUsers : $canInviteUsers, |
|
60 | + canPinMessages : $canPinMessages |
|
61 | 61 | ); |
62 | 62 | } |
63 | 63 | |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | ?int $untilDate = null |
73 | 73 | ): PromiseInterface { |
74 | 74 | return $this->api->restrictChatMember( |
75 | - chatId: $chatId, |
|
76 | - userId: $this->id, |
|
77 | - permissions: $permissions, |
|
78 | - untilDate: $untilDate |
|
75 | + chatId : $chatId, |
|
76 | + userId : $this->id, |
|
77 | + permissions : $permissions, |
|
78 | + untilDate : $untilDate |
|
79 | 79 | ); |
80 | 80 | } |
81 | 81 |