@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | ]; |
140 | 140 | |
141 | 141 | return new StreamedResponse( |
142 | - function () use ($idp, &$state) { |
|
142 | + function() use ($idp, &$state) { |
|
143 | 143 | $idp->handleAuthenticationRequest($state); |
144 | 144 | }, |
145 | 145 | ); |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | return new StreamedResponse( |
199 | - function () use ($idp, &$state) { |
|
199 | + function() use ($idp, &$state) { |
|
200 | 200 | $idp->handleAuthenticationRequest($state); |
201 | 201 | }, |
202 | 202 | ); |
@@ -596,7 +596,7 @@ discard block |
||
596 | 596 | Logger::debug($wresult); |
597 | 597 | |
598 | 598 | $wctx = $state['adfs:wctx']; |
599 | - $wreply = $state['adfs:wreply'] ? : $spMetadata->getValue('prp'); |
|
599 | + $wreply = $state['adfs:wreply'] ?: $spMetadata->getValue('prp'); |
|
600 | 600 | ADFS::postResponse($wreply, $wresult, $wctx); |
601 | 601 | } |
602 | 602 |