Skip to content

Commit 8430e81

Browse files
committed
Code style fix
1 parent f189038 commit 8430e81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Routing/Route.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ private function sanitizeRequirement(string $key, string $regex)
563563

564564
if ('$' === substr($regex, -1)) {
565565
$regex = substr($regex, 0, -1);
566-
} elseif (strlen($regex) - 2 === strpos($regex, '\\z')) {
566+
} elseif (\strlen($regex) - 2 === strpos($regex, '\\z')) {
567567
$regex = substr($regex, 0, -2);
568568
}
569569

0 commit comments

Comments
 (0)