| 1 | <?php |
||
| 17 | class DynamicallyConfiguredMatcherFactoryDecorator implements MatcherFactoryInterface |
||
| 18 | { |
||
| 19 | /** @var \eZ\Publish\Core\MVC\Symfony\Matcher\MatcherFactoryInterface|\eZ\Publish\Core\MVC\Symfony\Matcher\ConfigurableMatcherFactoryInterface */ |
||
| 20 | private $innerConfigurableMatcherFactory; |
||
| 21 | |||
| 22 | /** @var \eZ\Publish\Core\MVC\ConfigResolverInterface */ |
||
| 23 | private $configResolver; |
||
| 24 | |||
| 25 | /** @var string */ |
||
| 26 | private $parameterName; |
||
| 27 | |||
| 28 | /** @var string|null */ |
||
| 29 | private $namespace; |
||
| 30 | |||
| 31 | /** @var string|null */ |
||
| 32 | private $scope; |
||
| 33 | |||
| 34 | public function __construct( |
||
| 47 | |||
| 48 | public function match(View $view) |
||
| 55 | } |
||
| 56 |