Files
view/lib/Slim/Views/ViewInterface.php

9 lines
183 B
PHP
Raw Permalink Normal View History

2025-09-29 13:37:26 -03:00
<?php
namespace Slim\Views;
use Psr\Http\Message\ResponseInterface;
interface ViewInterface
{
public function render(ResponseInterface $response, $template, array $data = []);
}