Passed
Push — dependabot/composer/php-dev-70... ( 7ef301 )
by
unknown
03:28
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.
tests/src/Repository/SamlEntityRepository.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
                 sprintf(
76 76
                     'Unable to insert the new SP saml_entity. PDO raised this error: "%s"',
77 77
                     $stmt->errorInfo()[2]
78
-               )
78
+                )
79 79
             );
80 80
         } else {
81 81
             // Return the SP data
Please login to merge, or discard this patch.
ci/qa/phpstan-baseline.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,17 +2,17 @@
 block discarded – undo
2 2
 
3 3
 $ignoreErrors = [];
4 4
 $ignoreErrors[] = [
5
-	// identifier: function.deprecated
6
-	'message' => '#^Call to deprecated function GuzzleHttp\\\\json_decode\\(\\)\\:
5
+    // identifier: function.deprecated
6
+    'message' => '#^Call to deprecated function GuzzleHttp\\\\json_decode\\(\\)\\:
7 7
 json_decode will be removed in guzzlehttp/guzzle\\:8\\.0\\. Use Utils\\:\\:jsonDecode instead\\.$#',
8
-	'count' => 1,
9
-	'path' => __DIR__ . '/../../src/Surfnet/StepupGateway/GatewayBundle/Entity/SamlEntity.php',
8
+    'count' => 1,
9
+    'path' => __DIR__ . '/../../src/Surfnet/StepupGateway/GatewayBundle/Entity/SamlEntity.php',
10 10
 ];
11 11
 $ignoreErrors[] = [
12
-	// identifier: parameter.requiredAfterOptional
13
-	'message' => '#^Deprecated in PHP 8\\.0\\: Required parameter \\$value follows optional parameter \\$propertyPath\\.$#',
14
-	'count' => 1,
15
-	'path' => __DIR__ . '/../../src/Surfnet/StepupGateway/GatewayBundle/Exception/AssertionFailedException.php',
12
+    // identifier: parameter.requiredAfterOptional
13
+    'message' => '#^Deprecated in PHP 8\\.0\\: Required parameter \\$value follows optional parameter \\$propertyPath\\.$#',
14
+    'count' => 1,
15
+    'path' => __DIR__ . '/../../src/Surfnet/StepupGateway/GatewayBundle/Exception/AssertionFailedException.php',
16 16
 ];
17 17
 
18 18
 return ['parameters' => ['ignoreErrors' => $ignoreErrors]];
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
@@ -294,7 +294,7 @@
 block discarded – undo
294 294
             $form->addError(
295 295
                 new FormError(
296 296
                     $this->get('translator')
297
-                      ->trans('gateway.form.gateway_choose_second_factor.unknown_second_factor_type'),
297
+                        ->trans('gateway.form.gateway_choose_second_factor.unknown_second_factor_type'),
298 298
                 ),
299 299
             );
300 300
         }
Please login to merge, or discard this patch.