1
0
Fork 0
Manager/app/middleware/Middleware.php

10 lines
170 B
PHP

<?php
declare(strict_types=1);
namespace Mcp\Middleware;
interface Middleware
{
public function canAccess(): bool;
public function handleUnauthorized(): void;
}