Completed
Push — logging-config-new-dev-vm ( d7928a...9273b8 )
by
unknown
06:47 queued 04:27
created
DependencyInjection/SurfnetStepupGatewaySamlStepupProviderExtension.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@  discard block
 block discarded – undo
53 53
         }
54 54
     }
55 55
 
56
+    /**
57
+     * @param string $provider
58
+     */
56 59
     private function loadProviderConfiguration(
57 60
         $provider,
58 61
         array $configuration,
@@ -223,6 +226,9 @@  discard block
 block discarded – undo
223 226
         $container->setDefinition('gssp.provider.' . $provider . '.metadata.factory', $metadataFactory);
224 227
     }
225 228
 
229
+    /**
230
+     * @param string $provider
231
+     */
226 232
     private function createRouteConfig($provider, $routeName)
227 233
     {
228 234
         return [
Please login to merge, or discard this patch.
StepupGateway/U2fVerificationBundle/Repository/RegistrationRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 {
27 27
     /**
28 28
      * @param KeyHandle $keyHandle
29
-     * @return Registration|null
29
+     * @return Registration
30 30
      */
31 31
     public function findByKeyHandle(KeyHandle $keyHandle)
32 32
     {
Please login to merge, or discard this patch.
Surfnet/StepupGateway/U2fVerificationBundle/Service/VerificationService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
 
185 185
     /**
186 186
      * @param KeyHandle $keyHandle
187
-     * @return null|Registration
187
+     * @return Registration
188 188
      */
189 189
     public function findRegistrationByKeyHandle(KeyHandle $keyHandle)
190 190
     {
Please login to merge, or discard this patch.
src/Surfnet/StepupGateway/SecondFactorOnlyBundle/Adfs/StateHandler.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     }
91 91
 
92 92
     /**
93
-     * @return mixed|null
93
+     * @return string
94 94
      */
95 95
     public function getAuthMethod()
96 96
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     }
99 99
 
100 100
     /**
101
-     * @return mixed|null
101
+     * @return string
102 102
      */
103 103
     public function getContext()
104 104
     {
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @return mixed|null
109
+     * @return string
110 110
      */
111 111
     public function getAssertionConsumerServiceUrl()
112 112
     {
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 
130 130
     /**
131 131
      * @param string $key
132
-     * @param mixed $value Any scalar
132
+     * @param string $value Any scalar
133 133
      */
134 134
     protected function set($key, $value)
135 135
     {
Please login to merge, or discard this patch.
src/Surfnet/StepupGateway/GatewayBundle/Controller/GatewayController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -331,7 +331,7 @@
 block discarded – undo
331 331
     }
332 332
 
333 333
     /**
334
-     * @param $context
334
+     * @param \Surfnet\StepupGateway\GatewayBundle\Saml\ResponseContext $context
335 335
      * @return SAMLResponse
336 336
      */
337 337
     private function createResponseFailureResponse($context)
Please login to merge, or discard this patch.
src/Surfnet/StepupGateway/SecondFactorOnlyBundle/Saml/ResponseFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
 
150 150
     /**
151 151
      * @param Assertion $assertion
152
-     * @param $authnContextClassRef
152
+     * @param string $authnContextClassRef
153 153
      */
154 154
     private function addAuthenticationStatementTo(Assertion $assertion, $authnContextClassRef)
155 155
     {
Please login to merge, or discard this patch.
Surfnet/StepupGateway/GatewayBundle/Exception/AssertionFailedException.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -27,6 +27,11 @@
 block discarded – undo
27 27
     private $constraints;
28 28
 
29 29
     // @codingStandardsIgnoreStart Compliance with beberlei/assert's invalid argument exception
30
+
31
+    /**
32
+     * @param string $message
33
+     * @param integer $code
34
+     */
30 35
     public function __construct($message, $code, $propertyPath = null, $value, array $constraints = array())
31 36
     {
32 37
         parent::__construct($message, $code);
Please login to merge, or discard this patch.