eZ\Bundle\EzPublishCoreBundle\Matcher\ServiceAwareMatcherFactory::getMatcher PHP 메소드

getMatcher() 보호된 메소드

protected getMatcher ( string $matcherIdentifier ) : eZ\Publish\Core\MVC\Symfony\Matcher\ContentBased\MatcherInterface
$matcherIdentifier string
리턴 eZ\Publish\Core\MVC\Symfony\Matcher\ContentBased\MatcherInterface
    protected function getMatcher($matcherIdentifier)
    {
        if ($this->container->has($matcherIdentifier)) {
            return $this->container->get($matcherIdentifier);
        }
        return parent::getMatcher($matcherIdentifier);
    }
ServiceAwareMatcherFactory