1 | <?php declare(strict_types=1); |
||
10 | final class SharedAppClientCommand |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $appId; |
||
16 | |||
17 | /** |
||
18 | * SharedAppClientCommand constructor. |
||
19 | * @param string $appId |
||
20 | */ |
||
21 | 2 | public function __construct($appId) |
|
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | 2 | public function getAppId() |
|
33 | } |
||
34 |