1 | <?php |
||
10 | class Links |
||
11 | { |
||
12 | /** @var \Illuminate\Support\Collection */ |
||
13 | private $endpointTypes; |
||
14 | |||
15 | public function __construct() |
||
19 | |||
20 | public function controller(string $controller): ControllerEndpointType |
||
28 | |||
29 | public function invokableController(string $controller): InvokableControllerEndpointType |
||
37 | |||
38 | public function action(array $action): ActionEndpointType |
||
46 | |||
47 | public function endpointsGroup(Links $endpointsGroup) |
||
53 | |||
54 | public function getEndpointTypes(): Collection |
||
58 | } |
||
59 |