Total Complexity | 5 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 92.86% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class PugFactory |
||
10 | { |
||
11 | public const AVAILABLE_ADD_ONS = [ |
||
12 | 'filter' => 'filters', |
||
13 | 'addKeyword' => 'keywords', |
||
14 | 'share' => 'helpers', |
||
15 | ]; |
||
16 | |||
17 | 1 | public function __invoke(ContainerInterface $container): Pug |
|
32 | } |
||
33 | |||
34 | 1 | private function addOns(Pug $pug, ContainerInterface $container, PugConfig $config): void |
|
43 |