Skip to content
This repository has been archived by the owner on Feb 6, 2022. It is now read-only.

Typo fix #281

Merged
merged 1 commit into from Apr 21, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion DependencyInjection/SwiftmailerTransportFactory.php
Expand Up @@ -100,7 +100,7 @@ public static function resolveOptions(array $options)

if (isset($options['url'])) {
if (false === $parts = parse_url($options['url'])) {
throw new \InvalidArgumentException(sprintf('The Swiftmailer URL "%s" is not a valid.', $options['url']));
throw new \InvalidArgumentException(sprintf('The Swiftmailer URL "%s" is not valid.', $options['url']));
}
if (isset($parts['scheme'])) {
$options['transport'] = $parts['scheme'];
Expand Down