Total Complexity | 5 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 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 |
|
31 | } |
||
32 | |||
33 | 2 | private function __construct(JsonRpc\Middleware $middleware, JsonRpc\Procedure $next) |
|
37 | 2 | } |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 2 | public function __invoke(JsonRpc\Request $request): JsonRpc\Response |
|
43 | { |
||
44 | 2 | return ($this->middleware)($request, $this->next); |
|
45 | } |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | 1 | public function getSpec(): ?stdClass |
|
53 | } |
||
54 | } |
||
55 |