|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
/* |
|
6
|
|
|
* This file is part of Flight Routing. |
|
7
|
|
|
* |
|
8
|
|
|
* PHP version 7.4 and above required |
|
9
|
|
|
* |
|
10
|
|
|
* @author Divine Niiquaye Ibok <[email protected]> |
|
11
|
|
|
* @copyright 2019 Biurad Group (https://biurad.com/) |
|
12
|
|
|
* @license https://opensource.org/licenses/BSD-3-Clause License |
|
13
|
|
|
* |
|
14
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
15
|
|
|
* file that was distributed with this source code. |
|
16
|
|
|
*/ |
|
17
|
|
|
|
|
18
|
|
|
namespace Flight\Routing\Tests\Fixtures; |
|
19
|
|
|
|
|
20
|
|
|
use Nyholm\Psr7\Factory\Psr17Factory; |
|
21
|
|
|
use Psr\Http\Message\ResponseInterface; |
|
22
|
|
|
use Psr\Http\Message\ServerRequestInterface; |
|
23
|
|
|
use Psr\Http\Server\RequestHandlerInterface; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* BlankRequestHandler. |
|
27
|
|
|
*/ |
|
28
|
|
|
class BlankRequestHandler implements RequestHandlerInterface |
|
29
|
|
|
{ |
|
30
|
|
|
private bool $isDone = false; |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* @param array<string,mixed> $attributes |
|
34
|
|
|
*/ |
|
35
|
|
|
public function __construct(private array $attributes = []) |
|
36
|
|
|
{ |
|
37
|
|
|
$this->attributes = $attributes; |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
public static function __set_state(array $properties): static |
|
41
|
|
|
{ |
|
42
|
|
|
$new = new static(); |
|
43
|
|
|
|
|
44
|
|
|
foreach ($properties as $property => $value) { |
|
45
|
|
|
$new->{$property} = $value; |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
return $new; |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
public function isDone(): bool |
|
52
|
|
|
{ |
|
53
|
|
|
return $this->isDone; |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
/** |
|
57
|
|
|
* @return array<string,mixed> |
|
58
|
|
|
*/ |
|
59
|
|
|
public function getAttributes(): array |
|
60
|
|
|
{ |
|
61
|
|
|
return $this->attributes; |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
/** |
|
65
|
|
|
*/ |
|
66
|
|
|
public function getAttribute(string $key): mixed |
|
67
|
|
|
{ |
|
68
|
|
|
return $this->attributes[$key] ?? null; |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* {@inheritdoc} |
|
73
|
|
|
*/ |
|
74
|
|
|
public function handle(ServerRequestInterface $request): ResponseInterface |
|
75
|
|
|
{ |
|
76
|
|
|
$this->attributes = $request->getAttributes(); |
|
77
|
|
|
|
|
78
|
|
|
try { |
|
79
|
|
|
return (new Psr17Factory())->createResponse(); |
|
80
|
|
|
} finally { |
|
81
|
|
|
$this->isDone = true; |
|
82
|
|
|
} |
|
83
|
|
|
} |
|
84
|
|
|
} |
|
85
|
|
|
|