Passed
Push — feature/symfony6-upgrade ( 76f00a...ba8023 )
by Michiel
06:58
created
StepupSelfService/SelfServiceBundle/Controller/RegistrationController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         name: 'ss_registration_display_types',
57 57
         methods: ['GET'],
58 58
     )]
59
-    public function displaySecondFactorTypes(): Response|array
59
+    public function displaySecondFactorTypes(): Response | array
60 60
     {
61 61
         $institution = $this->getIdentity()->institution;
62 62
         $institutionConfigurationOptions = $this->configurationOptionsService
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         name: 'ss_second_factor_vetting_types',
109 109
         methods:  ['GET'],
110 110
     )]
111
-    public function displayVettingTypes(Request $request, string $secondFactorId): array|Response
111
+    public function displayVettingTypes(Request $request, string $secondFactorId): array | Response
112 112
     {
113 113
         /**
114 114
          * @var VettingTypeService
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
         name: 'ss_registration_verify_email',
184 184
         methods: ['GET'],
185 185
     )]
186
-    public function verifyEmail(Request $request): RedirectResponse|array
186
+    public function verifyEmail(Request $request): RedirectResponse | array
187 187
     {
188 188
         $nonce = $request->query->get('n', '');
189 189
         $identityId = $this->getIdentity()->id;
Please login to merge, or discard this patch.
src/Surfnet/StepupSelfService/SelfServiceBundle/Command/RevokeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,5 +33,5 @@
 block discarded – undo
33 33
     /**
34 34
      * @var UnverifiedSecondFactor|VerifiedSecondFactor|VettedSecondFactor
35 35
      */
36
-    public UnverifiedSecondFactor|VerifiedSecondFactor|VettedSecondFactor $secondFactor;
36
+    public UnverifiedSecondFactor | VerifiedSecondFactor | VettedSecondFactor $secondFactor;
37 37
 }
Please login to merge, or discard this patch.