This commit is contained in:
EwelinaLasowy
2022-05-17 15:05:28 +02:00
parent 35247cbabe
commit 4162dd3d67
7 changed files with 9 additions and 10 deletions

View File

@@ -30,7 +30,7 @@ trait FindsUserBySlackId
$user = $this->findUserBySlackId($slackId);
if (!$user) {
throw new UserNotFoundException(__("User :input does not exist in toby", ["input"=> $slackId]));
throw new UserNotFoundException(__("User :input does not exist in toby", ["input" => $slackId]));
}
return $user;

View File

@@ -37,7 +37,7 @@ trait ListsHandlers
)
->map(
fn(SignatureHandler $handler): AttachmentField => AttachmentField::create(
__($handler->getDescription()) ,
__($handler->getDescription()),
"`/{$handler->getSignature()}`",
),
)