Completed
Push — feature/bootstrap-commands ( f32ef4...6e1c80 )
by Michiel
02:04
created
Console/Command/BootstrapIdentityWithSmsSecondFactorCommand.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -210,6 +210,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.