UnderCurrent/src/View/ViewInterface.php

11 lines
240 B
PHP

<?php
namespace Ardent\Undercurrent\View;
use Ardent\Undercurrent\AppConfig;
use Ardent\Undercurrent\Http\ResponseInterface;
interface ViewInterface
{
public function render(AppConfig $config, ViewHelper $helper): string;
}