Completed
Push — master ( 22bc57...1ce92a )
by
unknown
29:24 queued 15:51
created

PhpRenderTemplate::renderTemplate()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2.0185

Importance

Changes 0
Metric Value
cc 2
eloc 5
nc 2
nop 2
dl 0
loc 8
ccs 5
cts 6
cp 0.8333
crap 2.0185
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
namespace League\Plates\RenderTemplate;
4
5
use League\Plates;
6
7
final class PhpRenderTemplate implements Plates\RenderTemplate
8
{
9
    private $bind;
10
11 16
    public function __construct(callable $bind = null) {
12 16
        $this->bind = $bind;
13 16
    }
14
15 16
    public function renderTemplate(Plates\Template $template, Plates\RenderTemplate $render = null) {
16 16
        $inc = self::createInclude();
17 16
        $inc = $this->bind ? ($this->bind)($inc, $template) : $inc;
18
19 16
        return Plates\Util\obWrap(function() use ($inc, $template) {
20
            $inc($template->get('path'), $template->data);
21 16
        });
22
    }
23
24
    private static function createInclude() {
25
        return function() {
26
            extract(func_get_arg(1));
0 ignored issues
show
Bug introduced by
func_get_arg(1) cannot be passed to extract() as the parameter $var_array expects a reference.
Loading history...
27
            include func_get_arg(0);
28
        };
29
    }
30
}
31