Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function invokableController(string $controller): InvokableControllerEndpointType |
||
30 | { |
||
31 | $invokableControllerEndpointType = InvokableControllerEndpointType::make($controller); |
||
32 | |||
33 | $this->endpointTypes[] = $invokableControllerEndpointType; |
||
34 | |||
35 | return $invokableControllerEndpointType; |
||
36 | } |
||
37 | |||
59 |