13 lines
323 B
PHP
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;
|
|
} |