Skip to content

Commit a788be6

Browse files
committed
fix-cs
1 parent 8120122 commit a788be6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/Base/Exceptions/ContentFieldValidationException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static function createNewWithMultiline(array $errors, ?string $contentNam
6262
$exception->setMessageTemplate('Content%contentName%fields did not validate: %errors%');
6363
$exception->setParameters([
6464
'%errors%' => $exception->generateValidationErrorsMessages(),
65-
'%contentName%' => $exception->contentName !== null ? ' "'. $exception->contentName. '" ' : ' ',
65+
'%contentName%' => $exception->contentName !== null ? ' "' . $exception->contentName . '" ' : ' ',
6666
]);
6767
$exception->message = $exception->getBaseTranslation();
6868

0 commit comments

Comments
 (0)