2 declare(strict_types
= 1);
3 namespace TYPO3\CMS\Core\Tests\Unit\Http\Fixtures
;
6 * This file is part of the TYPO3 CMS project.
8 * It is free software; you can redistribute it and/or modify it under
9 * the terms of the GNU General Public License, either version 2
10 * of the License, or any later version.
12 * For the full copyright and license information, please read the
13 * LICENSE.txt file that was distributed with this source code.
15 * The TYPO3 project - inspiring people to share!
18 use Psr\Http\Message\ResponseInterface
;
19 use Psr\Http\Message\ServerRequestInterface
;
20 use Psr\Http\Server\MiddlewareInterface
;
21 use Psr\Http\Server\RequestHandlerInterface
;
26 class MiddlewareFixture
implements MiddlewareInterface
31 public static $id = '0';
36 public static $hasBeenInstantiated = false;
38 public function __construct()
40 static::$hasBeenInstantiated = true;
43 public function process(ServerRequestInterface
$request, RequestHandlerInterface
$handler): ResponseInterface
45 $request = $request->withAddedHeader('X-SEQ-PRE-REQ-HANDLER', static::$id);
46 $response = $handler->handle($request);
48 return $response->withAddedHeader('X-SEQ-POST-REQ-HANDLER', static::$id);