class RouteCompiler

Same name in this branch

RouteCompiler compiles Route instances to CompiledRoute instances.

@author Fabien Potencier <fabien@symfony.com> @author Tobias Schultze <http://tobion.de>

Hierarchy

Expanded class hierarchy of RouteCompiler

1 file declares its use of RouteCompiler
7 string references to 'RouteCompiler'

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RouteCompiler.php, line 20

Namespace

Symfony\Component\Routing
View source

Members

Namesort descending Modifiers Type Description Overrides
RouteCompiler::compile public static function Overrides RouteCompilerInterface::compile 1
RouteCompiler::compilePattern private static function
RouteCompiler::computeRegexp private static function Computes the regexp used to match a specific token. It can be static text or a subpattern.
RouteCompiler::findNextSeparator private static function Returns the next static character in the Route pattern that will serve as a separator.
RouteCompiler::REGEX_DELIMITER constant 1
RouteCompiler::SEPARATORS constant This string defines the characters that are automatically considered separators in front of optional placeholders (with default and no static text following). Such a single separator can be left out together with the optional placeholder from matching…