Passed
Pull Request — master (#2)
by Tim
03:06
created
lib/AdfsController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -256,14 +256,14 @@  discard block
 block discarded – undo
256 256
             if ($_GET['wa'] === 'wsignout1.0') {
257 257
                 return new StreamedResponse(
258 258
                     /** @return void */
259
-                    function () use ($idp) {
259
+                    function() use ($idp) {
260 260
                         ADFS::receiveLogoutMessage($idp);
261 261
                     }
262 262
                 );
263 263
             } elseif ($_GET['wa'] === 'wsignin1.0') {
264 264
                 return new StreamedResponse(
265 265
                     /** @return void */
266
-                    function () use ($idp) {
266
+                    function() use ($idp) {
267 267
                         ADFS::receiveAuthnRequest($idp);
268 268
                     }
269 269
                 );
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 
278 278
             return new StreamedResponse(
279 279
                 /** @return void */
280
-                function () use ($idp, $assocId, $relayState, $logoutError) {
280
+                function() use ($idp, $assocId, $relayState, $logoutError) {
281 281
                     $idp->handleLogoutResponse($assocId, $relayState, $logoutError);
282 282
                 }
283 283
             );
Please login to merge, or discard this patch.