Skip to content

Commit b406214

Browse files
committed
fixed typos
1 parent bf094eb commit b406214

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CHANGELOG
55
-----
66

77
* [BC BREAK] `SendersLocatorInterface` has an additional method:
8-
`getSenderByAlias()`.
8+
`getSenderByAlias()`.
99
* A new `ListableReceiverInterface` was added, which a receiver
1010
can implement (when applicable) to enable listing and fetching
1111
individual messages by id (used in the new "Failed Messages" commands).

Transport/Sender/SendersLocator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ public function getSenderByAlias(string $alias): SenderInterface
100100
return $this->sendersLocator->get($alias);
101101
}
102102

103-
throw new UnknownSenderException(sprintf('Unknown sender alias "%s"', $alias));
103+
throw new UnknownSenderException(sprintf('Unknown sender alias "%s".', $alias));
104104
}
105105
}

0 commit comments

Comments
 (0)