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