| 1 | <?php declare(strict_types=1); |
||
| 5 | class Application |
||
| 6 | { |
||
| 7 | private $key; |
||
| 8 | |||
| 9 | private $secret; |
||
| 10 | |||
| 11 | 19 | public function __construct(string $key, string $secret) |
|
| 12 | { |
||
| 13 | 19 | $this->key = $key; |
|
| 14 | 19 | $this->secret = $secret; |
|
| 15 | } |
||
| 16 | |||
| 17 | 17 | public function getKey(): string |
|
| 21 | |||
| 22 | 8 | public function getSecret(): string |
|
| 26 | } |
||
| 27 |