1 | <?php |
||
23 | class ProvePhonePossessionCommand extends AbstractCommand |
||
24 | { |
||
25 | /** |
||
26 | * The ID of an existing identity. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | public $identityId; |
||
31 | |||
32 | /** |
||
33 | * The ID of the second factor to create. |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | public $secondFactorId; |
||
38 | |||
39 | /** |
||
40 | * @var string |
||
41 | */ |
||
42 | public $phoneNumber; |
||
43 | |||
44 | public function serialise() |
||
52 | } |
||
53 |