| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class AuthRequestProviderMiddleware implements MiddlewareInterface |
||
| 14 | { |
||
| 15 | /** @var AuthRequestInterface */ |
||
| 16 | private $authRequest; |
||
| 17 | |||
| 18 | public function __construct(AuthRequestInterface $authRequest) |
||
| 19 | { |
||
| 20 | $this->authRequest = $authRequest; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 26 | } |
||
| 27 | } |
||
| 28 |