Implement simple PHP based view renderer
This commit is contained in:
11
src/View/ViewInterface.php
Normal file
11
src/View/ViewInterface.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Ardent\Undercurrent\View;
|
||||
|
||||
use Ardent\Undercurrent\AppConfig;
|
||||
use Ardent\Undercurrent\Http\ResponseInterface;
|
||||
|
||||
interface ViewInterface
|
||||
{
|
||||
public function render(AppConfig $config): string;
|
||||
}
|
Reference in New Issue
Block a user