Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
60 | 2 | private function handle($content) |
|
61 | { |
||
62 | 2 | $content = new Inheritance($content, $this->config); |
|
63 | 2 | $content = new IncludeTpl($content, $this->config); |
|
64 | 2 | $content = new ForeachTpl($content); |
|
65 | 2 | $content = new IfTpl($content); |
|
66 | 2 | $content = new FuncTpl($content); |
|
67 | 2 | $content = new VariableTpl($content); |
|
68 | |||
69 | 2 | return $content; |
|
70 | } |
||
78 |