| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | final class QueueableRequestHandler extends SplQueue implements RequestHandlerInterface |
||
| 28 | { |
||
| 29 | 5 | public function __construct( |
|
| 30 | private readonly RequestHandlerInterface $endpoint, |
||
| 31 | ) { |
||
| 32 | 5 | } |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritDoc |
||
| 36 | */ |
||
| 37 | 5 | public function handle(ServerRequestInterface $request): ResponseInterface |
|
| 42 | } |
||
| 43 | } |
||
| 44 |