ulmus-user/src/Authorize/AuthorizeMethodInterface.php
2025-06-13 19:10:51 +00:00

13 lines
323 B
PHP

<?php
namespace Ulmus\User\Authorize;
use Psr\Http\Message\ServerRequestInterface;
use Ulmus\User\Entity\UserInterface;
interface AuthorizeMethodInterface
{
public function connect(ServerRequestInterface $request) : ServerRequestInterface;
public function catchRequest(ServerRequestInterface $request) : bool;
}