RenderTemplate::renderTemplate()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
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