8000 Fixed CS · Seldaek/symfony@89f4791 · GitHub
[go: up one dir, main page]

Skip to content

Commit 89f4791

Browse files
committed
Fixed CS
1 parent a348efe commit 89f4791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function isValid($value, Constraint $constraint)
3939
}
4040

4141
$size = @getimagesize($value);
42-
if (empty($size) or ($size[0] === 0) or ($size[1] === 0)) {
42+
if (empty($size) || ($size[0] === 0) || ($size[1] === 0)) {
4343
$this->setMessage($constraint->sizeNotDetectedMessage);
4444

4545
return false;

0 commit comments

Comments
 (0)
0