<?php declare(strict_types=1); namespace App\View\Engine; interface EngineInterface { public function render(string $template, array $data, array $config): string; }