Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
37 | 2 | public function __construct(Pug $pug, array $defaultParams, array $globals, array $config) |
|
38 | { |
||
39 | 2 | $this->pug = $pug; |
|
40 | 2 | $this->globals = $globals; |
|
41 | 2 | $this->config = $config; |
|
42 | 2 | $this->addPath($this->config['template_path']); |
|
43 | 2 | $this->setDefaultParams($defaultParams); |
|
44 | 2 | } |
|
80 |