| 1 | <?php |
||
| 13 | final class GenericVariableProviderRegistry implements VariableProviderRegistry |
||
| 14 | { |
||
| 15 | /** @var \eZ\Publish\Core\MVC\Symfony\View\VariableProvider[] */ |
||
| 16 | private $twigVariableProviders; |
||
| 17 | |||
| 18 | public function __construct(Traversable $twigVariableProviders) |
||
| 24 | |||
| 25 | public function setTwigVariableProvider(VariableProvider $twigVariableProvider): void |
||
| 29 | |||
| 30 | public function getTwigVariableProvider(string $identifier): ?VariableProvider |
||
| 34 | |||
| 35 | public function hasTwigVariableProvider(string $identifier): bool |
||
| 39 | } |
||
| 40 |