<?php/* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespaceSymfony\Component\Routing\Matcher;useSymfony\Component\Routing\Matcher\Dumper\CompiledUrlMatcherTrait;useSymfony\Component\Routing\RequestContext;/** * Matches URLs based on rules dumped by CompiledUrlMatcherDumper. * * @author Nicolas Grekas <p@tchwork.com> */classCompiledUrlMatcherextendsUrlMatcher{useCompiledUrlMatcherTrait;publicfunction__construct(array$compiledRoutes,RequestContext$context){$this->context=$context;[$this->matchHost,$this->staticRoutes,$this->regexpList,$this->dynamicRoutes,$this->checkCondition]=$compiledRoutes;}}