1 | <?php |
||
8 | class InvokableControllerEndpointType extends EndpointType |
||
9 | { |
||
10 | /** @var string */ |
||
11 | private $controller; |
||
12 | |||
13 | /** @var string|null */ |
||
14 | private $name; |
||
15 | |||
16 | public static function make(string $controller): InvokableControllerEndpointType |
||
20 | |||
21 | public function __construct(string $controller) |
||
25 | |||
26 | public function name(?string $name): InvokableControllerEndpointType |
||
32 | |||
33 | public function getEndpoints(Model $model = null): array |
||
37 | |||
38 | private function resolveEndpointType(): ActionEndpointType |
||
46 | } |
||
47 |