Completed
Push — develop ( 91a0ef...68f4fc )
by Michiel
03:36 queued 10s
created
tests/features/bootstrap/ServiceProviderContext.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -109,6 +109,9 @@
 block discarded – undo
109 109
         $this->registerIdp($entityId, false);
110 110
     }
111 111
 
112
+    /**
113
+     * @param boolean $sfoEnabled
114
+     */
112 115
     private function registerSp($entityId, $sfoEnabled)
113 116
     {
114 117
         $publicKeyLoader = new KeyLoader();
Please login to merge, or discard this patch.
tests/src/Repository/SamlEntityRepository.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -23,6 +23,10 @@  discard block
 block discarded – undo
23 23
         $this->connection = $connection;
24 24
     }
25 25
 
26
+    /**
27
+     * @param string $entityId
28
+     * @param string $certificate
29
+     */
26 30
     public function createSpIfNotExists($entityId, $certificate, $sfoEnabled = false)
27 31
     {
28 32
         // Does the SP exist?
@@ -81,6 +85,10 @@  discard block
 block discarded – undo
81 85
         }
82 86
     }
83 87
 
88
+    /**
89
+     * @param string $entityId
90
+     * @param string $certificate
91
+     */
84 92
     public function createIdpIfNotExists($entityId, $certificate)
85 93
     {
86 94
         // Does the SP exist?
Please login to merge, or discard this patch.
tests/src/Controller/IdentityProviderController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -194,6 +194,9 @@
 block discarded – undo
194 194
         return $assertion;
195 195
     }
196 196
 
197
+    /**
198
+     * @param string $destination
199
+     */
197 200
     private function addSubjectConfirmationFor(Assertion $newAssertion, $destination, $requestId)
198 201
     {
199 202
         $confirmation = new SubjectConfirmation();
Please login to merge, or discard this patch.
Surfnet/StepupGateway/GatewayBundle/Controller/SecondFactorController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@  discard block
 block discarded – undo
69 69
         return $this->selectSecondFactorForVerificationAction(self::MODE_SFO);
70 70
     }
71 71
 
72
+    /**
73
+     * @param string $authenticationMode
74
+     */
72 75
     public function selectSecondFactorForVerificationAction($authenticationMode)
73 76
     {
74 77
         $this->supportsAuthenticationMode($authenticationMode);
@@ -415,7 +418,6 @@  discard block
 block discarded – undo
415 418
     /**
416 419
      * @Template
417 420
      * @param Request $request
418
-     * @param string $authenticationMode
419 421
      * @return array|Response
420 422
      */
421 423
     public function verifySmsSecondFactorAction(Request $request)
@@ -481,7 +483,6 @@  discard block
 block discarded – undo
481 483
     /**
482 484
      * @Template
483 485
      * @param Request $request
484
-     * @param string $authenticationMode
485 486
      * @return array|Response
486 487
      */
487 488
     public function verifySmsSecondFactorChallengeAction(Request $request)
@@ -613,7 +614,6 @@  discard block
 block discarded – undo
613 614
      * @Template("SurfnetStepupGatewayGatewayBundle:second_factor:initiate_u2f_authentication.html.twig")
614 615
      *
615 616
      * @param Request $request
616
-     * @param string $authenticationMode
617 617
      * @return array|Response
618 618
      */
619 619
     public function verifyU2fAuthenticationAction(Request $request)
Please login to merge, or discard this patch.