@@ -46,9 +46,9 @@ discard block |
||
| 46 | 46 | #[Route( |
| 47 | 47 | path: '/registration/sms/send-challenge', |
| 48 | 48 | name: 'ss_registration_sms_send_challenge', |
| 49 | - methods: ['GET','POST'], |
|
| 49 | + methods: ['GET', 'POST'], |
|
| 50 | 50 | )] |
| 51 | - public function sendChallenge(Request $request): array|RedirectResponse |
|
| 51 | + public function sendChallenge(Request $request): array | RedirectResponse |
|
| 52 | 52 | { |
| 53 | 53 | $this->assertSecondFactorEnabled('sms'); |
| 54 | 54 | |
@@ -90,9 +90,9 @@ discard block |
||
| 90 | 90 | #[Route( |
| 91 | 91 | path: '/registration/sms/prove-possession', |
| 92 | 92 | name: 'ss_registration_sms_prove_possession', |
| 93 | - methods: ['GET','POST'], |
|
| 93 | + methods: ['GET', 'POST'], |
|
| 94 | 94 | )] |
| 95 | - public function provePossession(Request $request): RedirectResponse|array |
|
| 95 | + public function provePossession(Request $request): RedirectResponse | array |
|
| 96 | 96 | { |
| 97 | 97 | $this->assertSecondFactorEnabled('sms'); |
| 98 | 98 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | #[Route( |
| 84 | 84 | path: '/registration/gssf/{provider}/status', |
| 85 | 85 | name: 'ss_registration_gssf_status_report', |
| 86 | - defaults: ['authenticationFailed' => false, 'proofOfPossessionFailed'=> false ], |
|
| 86 | + defaults: ['authenticationFailed' => false, 'proofOfPossessionFailed'=> false], |
|
| 87 | 87 | methods: ['GET'], |
| 88 | 88 | )] |
| 89 | 89 | |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | name: 'ss_registration_gssf_authenticate', |
| 106 | 106 | methods: ['POST'], |
| 107 | 107 | )] |
| 108 | - public function authenticate(string $provider): array|Response |
|
| 108 | + public function authenticate(string $provider): array | Response |
|
| 109 | 109 | { |
| 110 | 110 | $this->assertSecondFactorEnabled($provider); |
| 111 | 111 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | name: 'ss_registration_gssf_consume_assertion', |
| 140 | 140 | methods: ['POST'], |
| 141 | 141 | )] |
| 142 | - public function consumeAssertion(Request $httpRequest, string $provider): array|Response |
|
| 142 | + public function consumeAssertion(Request $httpRequest, string $provider): array | Response |
|
| 143 | 143 | { |
| 144 | 144 | $this->assertSecondFactorEnabled($provider); |
| 145 | 145 | |