1 | <?php |
||
10 | class Api |
||
11 | { |
||
12 | private $endpoint; |
||
13 | |||
14 | private $handler; |
||
15 | |||
16 | private $authorization; |
||
17 | |||
18 | 30 | public function __construct(EndpointInterface $endpoint, ApiHandlerInterface $handler, ApiAuthorizationInterface $authorization) |
|
24 | |||
25 | 27 | public function getEndpoint(): EndpointInterface |
|
29 | |||
30 | 27 | public function getHandler(): ApiHandlerInterface |
|
34 | |||
35 | 24 | public function getAuthorization(): ApiAuthorizationInterface |
|
39 | } |
||
40 |