1 | <?php |
||
26 | class RemoteVetSecondFactorCommand extends AbstractCommand implements SelfServiceExecutable |
||
27 | { |
||
28 | /** |
||
29 | * The ID of an existing identity. |
||
30 | * |
||
31 | * @Assert\NotBlank() |
||
32 | * @Assert\Type(type="string") |
||
33 | * |
||
34 | * @var string |
||
35 | */ |
||
36 | public $identityId; |
||
37 | |||
38 | /** |
||
39 | * @Assert\NotBlank() |
||
40 | * @Assert\Type(type="string") |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | public $secondFactorId; |
||
45 | |||
46 | /** |
||
47 | * @inheritDoc |
||
48 | */ |
||
49 | public function getIdentityId() |
||
53 | } |
||
54 |