8000 Fixed more Coding Standards · symfony/symfony@2c6b774 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2c6b774

Browse files
committed
Fixed more Coding Standards
1 parent 16e578d commit 2c6b774

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Notifier/Bridge/Matrix/MatrixTransport.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ protected function doSend(MessageInterface $message): SentMessage
5959
}
6060

6161
$recipient = match (mb_substr($message->getRecipientId(), 0, 1)) {
62-
"@" => $this->getDirectMessageChannel($message->getRecipientId()),
63-
"!" => $message->getRecipientId(),
64-
"#" => $this->getRoomFromAlias($message->getRecipientId()),
62+
'@' => $this->getDirectMessageChannel($message->getRecipientId()),
63+
'!' => $message->getRecipientId(),
64+
'#' => $this->getRoomFromAlias($message->getRecipientId()),
6565
default => throw new UnsupportedRecipientTypeException(__CLASS__, mb_substr($message->getRecipientId(), 0, 1)),
6666
};
6767

0 commit comments

Comments
 (0)
0