1 | <?php |
||
12 | class Api |
||
13 | { |
||
14 | private $endpoint; |
||
15 | |||
16 | private $handler; |
||
17 | |||
18 | private $authorization; |
||
19 | |||
20 | private $rateLimit; |
||
21 | |||
22 | 30 | public function __construct( |
|
33 | |||
34 | 27 | public function getEndpoint(): EndpointInterface |
|
38 | |||
39 | 27 | public function getHandler(): ApiHandlerInterface |
|
43 | |||
44 | 24 | public function getAuthorization(): ApiAuthorizationInterface |
|
48 | |||
49 | 12 | public function getRateLimit(): RateLimitInterface |
|
53 | } |
||
54 |