1 | <?php declare(strict_types = 1); |
||
11 | final class Delegate implements DelegateInterface |
||
12 | { |
||
13 | /** @var \SplStack */ |
||
14 | private $stack; |
||
15 | |||
16 | private $called = false; |
||
17 | |||
18 | 6 | public function __construct(\SplStack $stack) |
|
22 | |||
23 | 4 | public function process(ServerRequestInterface $request): ResponseInterface |
|
38 | } |
||
39 |