Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
34 | 2 | private function handle($content) |
|
35 | { |
||
36 | 2 | $content = new Inheritance($content, $this->config); |
|
37 | 2 | $content = new IncludeTpl($content, $this->config); |
|
38 | 2 | $content = new ForeachTpl($content); |
|
39 | 2 | $content = new IfTpl($content); |
|
40 | 2 | $content = new FuncTpl($content); |
|
41 | 2 | $content = new VariableTpl($content); |
|
42 | |||
43 | 2 | return $content; |
|
44 | } |
||
46 |