| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait TwigViewBuilderTrait |
||
| 10 | { |
||
| 11 | abstract protected function attachView(ViewInterface $view); |
||
| 12 | /** |
||
| 13 | * @var TwigViewFactory |
||
| 14 | */ |
||
| 15 | protected $twigViewFactory; |
||
| 16 | |||
| 17 | public function injectTwigViewFactory(TwigViewFactory $twigViewFactory) |
||
| 18 | { |
||
| 19 | $this->twigViewFactory = $twigViewFactory; |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function twig(string $name): TwigView |
||
| 25 | } |
||
| 26 | } |
||
| 27 |