no-framework-tutorial/implementation/12/src/Template/Renderer.php
2025-07-08 23:02:48 +02:00

11 lines
219 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;
}