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