1 | <?php |
||
7 | class Application |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $id; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $token; |
||
18 | |||
19 | /** |
||
20 | * @param string $id The application ID. |
||
21 | * @param string $token The application token. |
||
22 | */ |
||
23 | public function __construct($id, $token) |
||
28 | |||
29 | public function id(): string |
||
33 | |||
34 | public function token(): string |
||
38 | } |
||
39 |