Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | 5 | public function __invoke( |
|
16 | ServerRequestInterface $request, |
||
17 | ResponseInterface $response, |
||
18 | PayloadInterface $payload |
||
19 | ) { |
||
20 | 5 | $location = $payload->getSetting('redirect'); |
|
21 | |||
22 | 5 | if (!empty($location)) { |
|
23 | 1 | $response = $response->withHeader('Location', $location); |
|
24 | 1 | } |
|
25 | |||
26 | 5 | return $response; |
|
27 | } |
||
28 | } |
||
29 |