Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function __construct(Event $event) |
||
22 | { |
||
23 | $this->twig = new Environment( |
||
24 | new FilesystemLoader(dirname(__DIR__) . '/templates') |
||
25 | ); |
||
26 | |||
27 | $this->twig->addExtension(new CamelCaseExtension()); |
||
28 | $this->twig->addExtension(new VarExportExtension()); |
||
29 | |||
30 | 2 | $this->event = $event; |
|
31 | } |
||
67 |