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