10 lines
241 B
PHP
10 lines
241 B
PHP
<?php
|
|
namespace ProVM\KI\Common\Alias;
|
|
|
|
use Psr\Http\Message\ResponseInterface as Response;
|
|
|
|
interface View {
|
|
public function render(Response $response, $template, array $data = []);
|
|
public function fetch($template, array $data = []);
|
|
}
|