no-framework-tutorial/implementation/12-configuration/src/Template/Renderer.php

11 lines
224 B
PHP

<?php declare(strict_types=1);
namespace Lubian\NoFramework\Template;
interface Renderer
{
/**
* @param array<string, mixed> $data
*/
public function render(string $template, array $data = []): string;
}