| Total Complexity | 3 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 13 | final class Pipeline implements RequestHandlerInterface | ||
| 14 | { | ||
| 15 | /** | ||
| 16 | * @var RequestHandlerInterface | ||
| 17 | */ | ||
| 18 | private $handler; | ||
| 19 | |||
| 20 | public function __construct(MiddlewareInterface ...$middlewares) | ||
| 30 | }); | ||
| 31 | } | ||
| 32 | } | ||
| 33 | |||
| 34 | public function handle(ServerRequestInterface $request): ResponseInterface | ||
| 39 |