‪TYPO3CMS  9.5
MiddlewareFixture.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
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.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
18 use Psr\Http\Message\ResponseInterface;
19 use Psr\Http\Message\ServerRequestInterface;
20 use Psr\Http\Server\MiddlewareInterface;
21 use Psr\Http\Server\RequestHandlerInterface;
22 
26 class ‪MiddlewareFixture implements MiddlewareInterface
27 {
31  public static ‪$id = '0';
32 
36  public static ‪$hasBeenInstantiated = false;
37 
38  public function ‪__construct()
39  {
40  static::$hasBeenInstantiated = true;
41  }
42 
43  public function ‪process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
44  {
45  $request = $request->withAddedHeader('X-SEQ-PRE-REQ-HANDLER', static::$id);
46  $response = $handler->handle($request);
47 
48  return $response->withAddedHeader('X-SEQ-POST-REQ-HANDLER', static::$id);
49  }
50 }
‪TYPO3\CMS\Core\Tests\Unit\Http\Fixtures\MiddlewareFixture\__construct
‪__construct()
Definition: MiddlewareFixture.php:36
‪TYPO3\CMS\Core\Tests\Unit\Http\Fixtures
Definition: MiddlewareFixture.php:3
‪TYPO3\CMS\Core\Tests\Unit\Http\Fixtures\MiddlewareFixture
Definition: MiddlewareFixture.php:27
‪TYPO3\CMS\Core\Tests\Unit\Http\Fixtures\MiddlewareFixture\$hasBeenInstantiated
‪static bool $hasBeenInstantiated
Definition: MiddlewareFixture.php:34
‪TYPO3\CMS\Core\Tests\Unit\Http\Fixtures\MiddlewareFixture\$id
‪static string $id
Definition: MiddlewareFixture.php:30
‪TYPO3\CMS\Core\Tests\Unit\Http\Fixtures\MiddlewareFixture\process
‪process(ServerRequestInterface $request, RequestHandlerInterface $handler)
Definition: MiddlewareFixture.php:41