Revert "fixed CS"

This reverts commit ba1cd26237.
This commit is contained in:
Fabien Potencier 2016-04-28 12:50:52 +02:00
parent a8c10ac6e5
commit e9dda1ee0a
1 changed files with 3 additions and 3 deletions

View File

@ -188,7 +188,7 @@ class UrlGenerator implements UrlGeneratorInterface, ConfigurableRequirementsInt
if ('' === $url) {
$url = '/';
} else if (preg_match($this->urlEncodingSkipRegexp, $url)) {
// the context base URL is already encoded (see Symfony\Component\HttpFoundation\Request)
// the contexts base URL is already encoded (see Symfony\Component\HttpFoundation\Request)
$url = strtr(rawurlencode($url), $this->decodedChars);
}