| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 5 | 
| Code Lines | 3 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 30 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface  | 
            ||
| 31 |     { | 
            ||
| 32 | $controller = $this->container->get($this->class);  | 
            ||
| 33 | $params = array_merge([$request, $handler], $this->factory->createInstances($request, $this->getHandlerParams()));  | 
            ||
| 34 | return (new Injector($this->container))->invoke([$controller, $this->method], $params);  | 
            ||
| 35 | }  | 
            ||
| 42 |