Skip to content

Commit 0cf976a

Browse files
committed
Fix CS
1 parent 353e1e8 commit 0cf976a

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
@@ -50,7 +50,7 @@ public function __construct(Headers $headers = null, AbstractPart $body = null)
5050
$missingPackages['twig/inky-extra'] = 'Inky';
5151
}
5252

53-
if ([] !== $missingPackages) {
53+
if ($missingPackages) {
5454
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))));
5555
}
5656

0 commit comments

Comments
 (0)