Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class AuthorizationCredentials |
||
6 | { |
||
7 | private $applicationId; |
||
8 | private $appKey; |
||
9 | |||
10 | public function __construct(int $applicationId, string $appKey) |
||
11 | { |
||
12 | $this->applicationId = $applicationId; |
||
13 | $this->appKey = $appKey; |
||
14 | } |
||
15 | |||
16 | /** |
||
17 | * @return int |
||
18 | */ |
||
19 | public function getApplicationId(): int |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return string |
||
26 | */ |
||
27 | public function getAppKey(): string |
||
34 |