Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | 24 | public function renderTemplate(Plates\Template $template, Plates\RenderTemplate $render = null) { |
|
16 | 24 | $inc = self::createInclude(); |
|
17 | 24 | $inc = $this->bind ? ($this->bind)($inc, $template) : $inc; |
|
18 | |||
19 | 24 | return Plates\Util\obWrap(function() use ($inc, $template) { |
|
20 | 24 | $inc($template->get('path'), $template->data); |
|
21 | 24 | }); |
|
22 | } |
||
23 | |||
31 |