File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1111use Mezzio \Authentication \UserInterface ;
1212use Psr \Http \Message \ResponseInterface ;
1313use Psr \Http \Message \ServerRequestInterface ;
14+ use Psr \Http \Server \MiddlewareInterface ;
1415use Psr \Http \Server \RequestHandlerInterface ;
1516
16- class AuthenticationMiddleware extends \ Mezzio \ Authentication \AuthenticationMiddleware
17+ class AuthenticationMiddleware implements MiddlewareInterface
1718{
1819 #[Inject(
1920 AuthenticationInterface::class,
2021 )]
2122 public function __construct (
22- AuthenticationInterface $ auth ,
23+ protected AuthenticationInterface $ auth ,
2324 ) {
24- parent ::__construct ($ auth );
2525 }
2626
2727 public function process (ServerRequestInterface $ request , RequestHandlerInterface $ handler ): ResponseInterface
You can’t perform that action at this time.
0 commit comments