Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | 2 | public function __construct($path, BaseTemplateReference $childReference) |
|
12 | { |
||
13 | 2 | parent::__construct( |
|
14 | 2 | $childReference->get('bundle'), |
|
15 | 2 | $childReference->get('controller'), |
|
16 | 2 | $childReference->get('name'), |
|
17 | 2 | $childReference->get('format'), |
|
18 | 2 | $childReference->get('engine') |
|
19 | 2 | ); |
|
20 | |||
21 | 2 | $this->parameters['path'] = $path; |
|
22 | 2 | } |
|
23 | |||
40 |