eZ\Bundle\EzPublishCoreBundle\Matcher\ContentMatcherFactory::getMatcher PHP Méthode

getMatcher() protected méthode

protected getMatcher ( string $matcherIdentifier ) : eZ\Publish\Core\MVC\Symfony\Matcher\ContentBased\MatcherInterface
$matcherIdentifier string
Résultat 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);
    }