Skip to content

Commit

Permalink
#15 auth middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxErrorLineNULL committed Aug 9, 2021
1 parent 7c0db07 commit a1f9683
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/Core/HTTP/Middleware/AuthExceptionMiddleware.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
* Author: SyntaxErrorLineNULL.
*/

declare(strict_types=1);

namespace SELN\App\Core\HTTP\Middleware;

use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;

class AuthExceptionMiddleware implements MiddlewareInterface
{

/**
* @inheritDoc
*/
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{

}
}

0 comments on commit a1f9683

Please sign in to comment.