| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | trait TwigViewBuilderTrait |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var TwigViewFactory |
||
| 11 | */ |
||
| 12 | protected $twigViewFactory; |
||
| 13 | |||
| 14 | public function injectTwigViewFactory(TwigViewFactory $twigViewFactory) |
||
| 15 | { |
||
| 16 | $this->twigViewFactory = $twigViewFactory; |
||
| 17 | return $this; |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function twig(string $name) |
||
| 23 | } |
||
| 24 | } |
||
| 25 |