We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f001637 commit c4c1941Copy full SHA for c4c1941
1 file changed
src/Base64StringElementTrait.php
@@ -80,7 +80,10 @@ protected function sanitizeContent(string $content): string
80
protected function validateContent(string $content): void
81
{
82
// Note: content must already be sanitized before validating
83
- Assert::stringPlausibleBase64($this->sanitizeContent($content), SchemaViolationException::class);
+ Assert::stringPlausibleBase64(
84
+ $this->sanitizeContent($content),
85
+ SchemaViolationException::class
86
+ );
87
}
88
89
0 commit comments