Passed
Pull Request — main (#308)
by Paul
12:52 queued 05:50
created
Controller/Registration/Gssf/GssfConsumeAssertionController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Copyright 2023 SURFnet bv
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         name: 'ss_registration_gssf_consume_assertion',
57 57
         methods: ['POST'],
58 58
     )]
59
-    public function consumeAssertion(Request $httpRequest, string $provider): array|Response
59
+    public function consumeAssertion(Request $httpRequest, string $provider): array | Response
60 60
     {
61 61
         $this->assertSecondFactorEnabled($provider);
62 62
 
Please login to merge, or discard this patch.
SelfServiceBundle/Controller/Registration/Gssf/GssfStatusController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Copyright 2023 SURFnet bv
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     #[Route(
70 70
         path: '/registration/gssf/{provider}/status',
71 71
         name: 'ss_registration_gssf_status_report',
72
-        defaults: ['authenticationFailed' => false, 'proofOfPossessionFailed'=> false ],
72
+        defaults: ['authenticationFailed' => false, 'proofOfPossessionFailed'=> false],
73 73
         methods: ['GET'],
74 74
     )]
75 75
     public function status(Request $request, string $provider): Response
Please login to merge, or discard this patch.
SelfServiceBundle/Controller/Registration/Gssf/GssfMetadataController.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     ) {
42 42
         parent::__construct($logger, $configurationOptionsService);
43 43
     }
44
-     #[Route(
44
+        #[Route(
45 45
         path: '/registration/gssf/{provider}/metadata',
46 46
         name: 'ss_registration_gssf_saml_metadata',
47 47
         methods: ['GET'],
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Copyright 2023 SURFnet bv
Please login to merge, or discard this patch.
Controller/Registration/Gssf/GssfAuthenticateController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Copyright 2014 SURFnet bv
Please login to merge, or discard this patch.
Controller/Registration/Sms/SmsProofPossessionController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Copyright 2023 SURFnet bv
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     #[Route(
45 45
         path: '/registration/sms/prove-possession',
46 46
         name: 'ss_registration_sms_prove_possession',
47
-        methods: ['GET','POST'],
47
+        methods: ['GET', 'POST'],
48 48
     )]
49 49
     public function __invoke(Request $request): Response
50 50
     {
Please login to merge, or discard this patch.
Controller/Registration/Sms/SmsSendChallengeController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Copyright 2023 SURFnet bv
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     #[Route(
45 45
         path: '/registration/sms/send-challenge',
46 46
         name: 'ss_registration_sms_send_challenge',
47
-        methods: ['GET','POST'],
47
+        methods: ['GET', 'POST'],
48 48
     )]
49 49
     public function __invoke(Request $request): Response
50 50
     {
Please login to merge, or discard this patch.