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

PhpRenderTemplate::createInclude()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 6
ccs 0
cts 2
cp 0
crap 2
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