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