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