Conditions | 2 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
50 | public function beforeCompile() : void |
||
51 | { |
||
52 | 1 | parent::beforeCompile(); |
|
53 | |||
54 | 1 | $builder = $this->getContainerBuilder(); |
|
55 | |||
56 | // Install extension latte macros |
||
57 | 1 | $latteFactory = $builder->getDefinition($builder->getByType(Bridges\ApplicationLatte\ILatteFactory::class) ?: 'nette.latteFactory'); |
|
58 | |||
59 | 1 | $latteFactory->addSetup('IPub\Forms\Latte\Macros::install(?->getCompiler())', ['@self']); |
|
60 | 1 | } |
|
61 | |||
75 |