Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
41 | 1 | public function build(ContainerBuilder $container) |
|
42 | { |
||
43 | $container |
||
44 | 1 | ->addCompilerPass(new TwigExtensionsCompilerPass()) |
|
45 | 1 | ->addCompilerPass(new TwigEnvironmentCompilerPass()) |
|
46 | 1 | ->addCompilerPass(new TwigLoaderCompilerPass()) |
|
47 | 1 | ->addCompilerPass(new ExecutorBuilderCompilerPass()) |
|
48 | 1 | ->addCompilerPass(new RegisterExecutorsCompilerPass()) |
|
49 | ; |
||
50 | 1 | } |
|
51 | } |
||
52 |