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

Skip to content

Commit 79b98b7

Browse files
committed
add missing comma
1 parent 5b7dc07 commit 79b98b7

File tree

1 file changed

+3
-3
lines changed
  • src/Symfony/Component/Validator/Constraints

1 file changed

+3
-3
lines changed

src/Symfony/Component/Validator/Constraints/File.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ public function __construct(
9999
?bool $binaryFormat = null,
100100
array|string|null $mimeTypes = null,
101101
?int $filenameMaxLength = null,
102-
string $filenameCharset = null,
103-
string $filenameCountUnit = null,
102+
?string $filenameCharset = null,
103+
?string $filenameCountUnit = null,
104104
?string $notFoundMessage = null,
105105
?string $notReadableMessage = null,
106106
?string $maxSizeMessage = null,
@@ -118,7 +118,7 @@ public function __construct(
118118
?string $uploadErrorMessage = null,
119119
?array $groups = null,
120120
mixed $payload = null,
121-
string $filenameCharsetMessage = null,
121+
?string $filenameCharsetMessage = null,
122122
array|string|null $extensions = null,
123123
?string $extensionsMessage = null,
124124
) {

0 commit comments

Comments
 (0)