Passed
Push — feature/add-azure-mfa-registra... ( e9464b...2712a3 )
by
unknown
02:12
created
src/Surfnet/StepupGateway/GatewayBundle/Saml/Proxy/ProxyStateHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 
205 205
     public function isSecondFactorFallback(): bool
206 206
     {
207
-        return (bool)$this->get('selected_second_factor_fallback');
207
+        return (bool) $this->get('selected_second_factor_fallback');
208 208
     }
209 209
 
210 210
     public function setGsspUserAttributes(string $subject, string $institution): ProxyStateHandler
@@ -217,12 +217,12 @@  discard block
 block discarded – undo
217 217
 
218 218
     public function getGsspUserAttributeSubject(): string
219 219
     {
220
-        return (string)$this->get('user_attribute_subject');
220
+        return (string) $this->get('user_attribute_subject');
221 221
     }
222 222
 
223 223
     public function getGsspUserAttributeInstitution(): string
224 224
     {
225
-        return (string)$this->get('user_attribute_institution');
225
+        return (string) $this->get('user_attribute_institution');
226 226
     }
227 227
 
228 228
     public function setVerifiedBySsoOn2faCookie(bool $isVerifiedByCookie): ProxyStateHandler
Please login to merge, or discard this patch.
SecondFactorOnlyBundle/Service/Gateway/GsspFallbackService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
             $this->stateHandler->getGsspUserAttributeSubject(),
163 163
             $this->stateHandler->getGsspUserAttributeInstitution(),
164 164
             $this->config->getGssp(),
165
-            (string)$this->stateHandler->getPreferredLocale()
165
+            (string) $this->stateHandler->getPreferredLocale()
166 166
         );
167 167
     }
168 168
 }
Please login to merge, or discard this patch.