1 | <?php |
||
23 | class ProveYubikeyPossessionCommand 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 | * The Yubikey's public ID. |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | public $yubikeyPublicId; |
||
45 | |||
46 | public function serialise() |
||
54 | } |
||
55 |