Skip to content

Commit eacf93d

Browse files
committed
Fixed coding standard
1 parent 0425579 commit eacf93d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ public function validate($value, Constraint $constraint)
6161
return;
6262
}
6363

64-
$protocolPattern = "(%s):";
64+
$protocolPattern = '(%s):';
6565
if ($constraint->relativeProtocol) {
66-
$protocolPattern = "((%s):)?";
66+
$protocolPattern = '((%s):)?';
6767
}
6868

6969
$protocolPattern = sprintf($protocolPattern, implode('|', $constraint->protocols));

0 commit comments

Comments
 (0)