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