Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c55ff99

Browse files
committed
minor #45715 Remove extra space in NotificationEmail (jmsche)
This PR was merged into the 4.4 branch. Discussion ---------- Remove extra space in NotificationEmail | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | N/A | License | MIT | Doc PR | N/A Hi, just a little space character being removed :) Currently without this "patch" it renders: > You cannot use "..." if the " CSS Inliner" and "Inky" Twig extensions are not available; try running "composer require twig/cssinliner-extra twig/inky-extra". Commits ------- b370b32 Remove extra space in NotificationEmail
2 parents a2fc328 + b370b32 commit c55ff99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/Twig/Mime/NotificationEmail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function __construct(Headers $headers = null, AbstractPart $body = null)
4343
{
4444
$missingPackages = [];
4545
if (!class_exists(CssInlinerExtension::class)) {
46-
$missingPackages['twig/cssinliner-extra'] = ' CSS Inliner';
46+
$missingPackages['twig/cssinliner-extra'] = 'CSS Inliner';
4747
}
4848

4949
if (!class_exists(InkyExtension::class)) {

0 commit comments

Comments
 (0)