Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | class FixedResponseMiddleware extends AbstractMiddleware |
||
13 | { |
||
14 | protected $fixedResponse; |
||
15 | |||
16 | /** |
||
17 | * @param ResponseInterface $response The fixed response. |
||
18 | */ |
||
19 | 1 | public function __construct(ResponseInterface $response) |
|
22 | 1 | } |
|
23 | |||
24 | 1 | protected function main(): ResponseInterface |
|
29 |