Skip to content

Commit c04b20c

Browse files
committed
[Mailer] Fix typo
1 parent ceb4003 commit c04b20c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Exception/UnsupportedHostException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function __construct(Dsn $dsn)
5454
}
5555
$package = self::HOST_TO_PACKAGE_MAP[$provider] ?? null;
5656
if ($package && !class_exists($package['class'])) {
57-
parent::__construct(sprintf('Unable to send emails via "%s" as the bridge is not installed. Try running "composer require %s".', $host, $package['package']));
57+
parent::__construct(sprintf('Unable to send emails via "%s" as the bridge is not installed. Try running "composer require %s".', $provider, $package['package']));
5858

5959
return;
6060
}

0 commit comments

Comments
 (0)