@@ -210,6 +210,9 @@ discard block |
||
210 | 210 | ); |
211 | 211 | } |
212 | 212 | |
213 | + /** |
|
214 | + * @param string $secondFactorId |
|
215 | + */ |
|
213 | 216 | private function provePossession($secondFactorId, $identity, $phoneNumber) |
214 | 217 | { |
215 | 218 | $command = new ProvePhonePossessionCommand(); |
@@ -220,6 +223,9 @@ discard block |
||
220 | 223 | $this->pipeline->process($command); |
221 | 224 | } |
222 | 225 | |
226 | + /** |
|
227 | + * @param UnverifiedSecondFactor $unverifiedSecondFactor |
|
228 | + */ |
|
223 | 229 | private function verifyEmail($identity, $unverifiedSecondFactor) |
224 | 230 | { |
225 | 231 | $command = new VerifyEmailCommand(); |
@@ -229,6 +235,10 @@ discard block |
||
229 | 235 | $this->pipeline->process($command); |
230 | 236 | } |
231 | 237 | |
238 | + /** |
|
239 | + * @param string $secondFactorId |
|
240 | + * @param VerifiedSecondFactor $verifiedSecondFactor |
|
241 | + */ |
|
232 | 242 | private function vetSecondFactor($identity, $secondFactorId, $verifiedSecondFactor, $phoneNumber) |
233 | 243 | { |
234 | 244 | $command = new VetSecondFactorCommand(); |