Update namespaces

This commit is contained in:
2025-09-29 12:33:07 -03:00
parent 6b7097ec01
commit daa8f0f248
3 changed files with 7 additions and 8 deletions

8
src/Define/View.php Normal file
View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Common\Alias;
use Psr\Http\Message\ResponseInterface as Response;
interface View {
public function render(Response $response, $template, array $data = []);
}