Skip to content

Commit

Permalink
Fix exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHemery committed Dec 10, 2020
1 parent efcea35 commit 7ff398b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FakeSmsTransportFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function create(Dsn $dsn): TransportInterface
}

if (!$from) {
throw new IncompleteDsnException('Missing to.', $dsn->getOriginalDsn());
throw new IncompleteDsnException('Missing from.', $dsn->getOriginalDsn());
}

if ('fakesms' === $scheme) {
Expand Down

0 comments on commit 7ff398b

Please sign in to comment.