| 1 | <?php |
||
| 10 | abstract class AuthMiddleware implements MiddlewareInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @inheritDoc |
||
| 14 | */ |
||
| 15 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 21 | |||
| 22 | abstract public function authenticate(ServerRequestInterface $request); |
||
| 23 | } |
||
| 24 |