관리-도구
편집 파일: TemplateEngineInterface.php
<?php declare(strict_types=1); namespace Flasher\Prime\Template; interface TemplateEngineInterface { /** * @param array<string, mixed> $context */ public function render(string $name, array $context = []): string; }