1 | <?php |
||
8 | class Api |
||
9 | { |
||
10 | private $endpoint; |
||
11 | |||
12 | private $handler; |
||
13 | |||
14 | private $authorization; |
||
15 | |||
16 | 30 | public function __construct(EndpointInterface $endpoint, ApiHandlerInterface $handler, ApiAuthorizationInterface $authorization) |
|
22 | |||
23 | 27 | public function getEndpoint(): EndpointInterface |
|
27 | |||
28 | 27 | public function getHandler(): ApiHandlerInterface |
|
32 | |||
33 | 24 | public function getAuthorization(): ApiAuthorizationInterface |
|
37 | } |
||
38 |