Skip to content

Commit bc9071d

Browse files
mikemilanonicolas-grekas
authored andcommitted
[Twig][Mime] Removed extra quotes in missing package exception message
1 parent 69d6adb commit bc9071d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Mime/NotificationEmail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function __construct(Headers $headers = null, AbstractPart $body = null)
5151
}
5252

5353
if ($missingPackages) {
54-
throw new \LogicException(sprintf('You cannot use "%s" if the "%s" Twig extension%s not available; try running "composer require "%s"".', static::class, implode('" and "', $missingPackages), \count($missingPackages) > 1 ? 's are' : ' is', implode(' ', array_keys($missingPackages))));
54+
throw new \LogicException(sprintf('You cannot use "%s" if the "%s" Twig extension%s not available; try running "%s".', static::class, implode('" and "', $missingPackages), \count($missingPackages) > 1 ? 's are' : ' is', 'composer require '.implode(' ', array_keys($missingPackages))));
5555
}
5656

5757
parent::__construct($headers, $body);

0 commit comments

Comments
 (0)