RenderTemplate
last analyzed

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
renderTemplate() 0 1 ?
1
<?php
2
3
namespace League\Plates;
4
5
/** Converts a template into a string. The top-level RenderTemplate is passed in so that any render template
6
    can implement recursive rendering. */
7
interface RenderTemplate
8
{
9
    /** @return string */
10
    public function renderTemplate(Template $template, RenderTemplate $rt = null);
11
}
12