1 | <?php |
||
19 | class AppleNewsConfig implements AppleNewsConfigInterface |
||
20 | { |
||
21 | /** @var int */ |
||
22 | protected $id; |
||
23 | |||
24 | /** @var string */ |
||
25 | protected $apiKeyId; |
||
26 | |||
27 | /** @var string */ |
||
28 | protected $apiKeySecret; |
||
29 | |||
30 | /** @var string */ |
||
31 | protected $channelId; |
||
32 | |||
33 | /** @var TenantInterface */ |
||
34 | protected $tenant; |
||
35 | |||
36 | public function getId() |
||
40 | |||
41 | public function getApiKeyId(): ?string |
||
45 | |||
46 | public function setApiKeyId(string $apiKeyId): void |
||
50 | |||
51 | public function getApiKeySecret(): ?string |
||
55 | |||
56 | public function setApiKeySecret(string $apiKeySecret): void |
||
60 | |||
61 | public function getChannelId(): ?string |
||
65 | |||
66 | public function setChannelId(string $channelId): void |
||
70 | |||
71 | public function getTenant(): TenantInterface |
||
75 | |||
76 | public function setTenant(TenantInterface $tenant): void |
||
80 | } |
||
81 |