@@ -56,7 +56,7 @@ discard block |
||
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 |
||
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 |
||
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; |
@@ -33,5 +33,5 @@ |
||
33 | 33 | /** |
34 | 34 | * @var UnverifiedSecondFactor|VerifiedSecondFactor|VettedSecondFactor |
35 | 35 | */ |
36 | - public UnverifiedSecondFactor|VerifiedSecondFactor|VettedSecondFactor $secondFactor; |
|
36 | + public UnverifiedSecondFactor | VerifiedSecondFactor | VettedSecondFactor $secondFactor; |
|
37 | 37 | } |