Total Complexity | 5 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class MiddlewareStack implements JsonRpc\Procedure |
||
11 | { |
||
12 | /** |
||
13 | * @var JsonRpc\Middleware |
||
14 | */ |
||
15 | private $middleware; |
||
16 | |||
17 | /** |
||
18 | * @var JsonRpc\Procedure |
||
19 | */ |
||
20 | private $next; |
||
21 | |||
22 | 15 | public static function compose(JsonRpc\Procedure $bottom, JsonRpc\Middleware ...$middlewares): JsonRpc\Procedure |
|
23 | { |
||
24 | 15 | $stack = $bottom; |
|
25 | |||
26 | 15 | foreach ($middlewares as $middleware) { |
|
27 | 2 | $stack = new self($middleware, $stack); |
|
28 | } |
||
29 | |||
30 | 15 | return $stack; |
|
31 | } |
||
32 | |||
33 | 2 | private function __construct(JsonRpc\Middleware $middleware, JsonRpc\Procedure $next) |
|
34 | { |
||
35 | 2 | $this->middleware = $middleware; |
|
36 | 2 | $this->next = $next; |
|
37 | 2 | } |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 2 | public function __invoke(JsonRpc\Request $request): JsonRpc\Response |
|
45 | } |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | 1 | public function getSpec(): ?stdClass |
|
53 | } |
||
54 | } |
||
55 |