| 1 | <?php |
||
| 7 | class ChangePassword extends ProvidesEventsForm |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var AuthenticationOptionsInterface |
||
| 11 | */ |
||
| 12 | protected $authOptions; |
||
| 13 | |||
| 14 | public function __construct($name, AuthenticationOptionsInterface $options) |
||
| 80 | |||
| 81 | /** |
||
| 82 | * Set Authentication-related Options |
||
| 83 | * |
||
| 84 | * @param AuthenticationOptionsInterface $authOptions |
||
| 85 | * @return ChangePassword |
||
| 86 | */ |
||
| 87 | public function setAuthenticationOptions(AuthenticationOptionsInterface $authOptions) |
||
| 93 | |||
| 94 | /** |
||
| 95 | * Get Authentication-related Options |
||
| 96 | * |
||
| 97 | * @return AuthenticationOptionsInterface |
||
| 98 | */ |
||
| 99 | public function getAuthenticationOptions() |
||
| 103 | } |
||
| 104 |