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