MapContentRenderTemplate::renderTemplate()   A
last analyzed

Complexity

Conditions 2
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
cc 2
nc 1
nop 2
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 6
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace League\Plates\RenderTemplate;
4
5
use League\Plates;
6
7
final class MapContentRenderTemplate extends RenderTemplateDecorator
8
{
9
    private $map_content;
10
11 24
    public function __construct(Plates\RenderTemplate $render, callable $map_content) {
12 24
        parent::__construct($render);
13 24
        $this->map_content = $map_content;
14 24
    }
15
16
    public function renderTemplate(Plates\Template $template, Plates\RenderTemplate $rt = null) {
17
        return ($this->map_content)($this->render->renderTemplate($template, $rt ?: $this));
18
    }
19
20 24
    public static function base64Encode(Plates\RenderTemplate $render) {
21 24
        return new self($render, 'base64_encode');
22
    }
23
}
24