Skip to content

Commit 60873f9

Browse files
committed
PHPCS fixes, dafuq did these come from?!
1 parent 25e39af commit 60873f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Commands/Command.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function preExecute(): ServerResponse
193193
'text' => sprintf(
194194
"/%s command is only available in a private chat.\n(`%s`)",
195195
$this->getName(),
196-
$message->getText()
196+
$message->getText(),
197197
),
198198
]);
199199
}
@@ -422,11 +422,11 @@ public function replyToChat(string $text, array $data = []): ServerResponse
422422
'chat_id' => $message->getChat()->getId(),
423423
'text' => $text,
424424
];
425-
425+
426426
if ($message->getIsTopicMessage()) {
427427
$reply['message_thread_id'] = $message->getMessageThreadId();
428428
}
429-
429+
430430
return Request::sendMessage(array_merge($reply, $data));
431431
}
432432

0 commit comments

Comments
 (0)