for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\Plates;
/** Converts a template into a string. The top-level RenderTemplate is passed in so that any render template
can implement recursive rendering. */
interface RenderTemplate
{
/** @return string */
public function renderTemplate(Template $template, RenderTemplate $rt = null);
}