Passed
Pull Request — develop (#319)
by Michiel
19:41 queued 14:36
created
src/Surfnet/StepupGateway/GatewayBundle/Saml/AssertionAdapter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     public function inResponseToMatches($inResponseTo)
37 37
     {
38
-         return $this->getInResponseTo() === $inResponseTo;
38
+            return $this->getInResponseTo() === $inResponseTo;
39 39
     }
40 40
 
41 41
     /**
Please login to merge, or discard this patch.
Surfnet/StepupGateway/GatewayBundle/Controller/SecondFactorController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -271,7 +271,7 @@
 block discarded – undo
271 271
             $form->addError(
272 272
                 new FormError(
273 273
                     $this->get('translator')
274
-                      ->trans('gateway.form.gateway_choose_second_factor.unknown_second_factor_type')
274
+                        ->trans('gateway.form.gateway_choose_second_factor.unknown_second_factor_type')
275 275
                 )
276 276
             );
277 277
         }
Please login to merge, or discard this patch.
tests/src/Controller/IdentityProviderController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@
 block discarded – undo
239 239
         $keyLoader = new KeyLoader();
240 240
         $keyLoader->loadCertificateFile('/var/www/html/ci/certificates/idp.crt');
241 241
         /**
242
- * @var \SAML2\Certificate\X509 $publicKey 
242
+         * @var \SAML2\Certificate\X509 $publicKey 
243 243
 */
244 244
         $publicKey = $keyLoader->getKeys()->getOnlyElement();
245 245
 
Please login to merge, or discard this patch.
tests/features/bootstrap/ServiceProviderContext.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
         $publicKeyLoader->loadCertificateFile('/var/www/html/ci/certificates/sp.crt');
126 126
         $keys = $publicKeyLoader->getKeys();
127 127
         /**
128
- * @var Key $cert 
128
+         * @var Key $cert 
129 129
 */
130 130
         $cert = $keys->first();
131 131
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         $publicKeyLoader->loadCertificateFile('/var/www/html/ci/certificates/idp.crt');
147 147
         $keys = $publicKeyLoader->getKeys();
148 148
         /**
149
- * @var Key $cert 
149
+         * @var Key $cert 
150 150
 */
151 151
         $cert = $keys->first();
152 152
 
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
     public function getIdentityProvider()
326 326
     {
327 327
         /**
328
- * @var RequestStack $stack 
328
+         * @var RequestStack $stack 
329 329
 */
330 330
 
331 331
         $stack = $this->kernel->getContainer()->get('request_stack');
Please login to merge, or discard this patch.