10 lines
191 B
PHP
10 lines
191 B
PHP
<?php
|
|
|
|
namespace Ulmus\User\Authorize\Header;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
|
|
interface MethodInterface
|
|
{
|
|
public function execute(ServerRequestInterface $request) : bool;
|
|
} |