@@ -274,7 +274,7 @@ |
||
274 | 274 | $attr[] = new Attribute( |
275 | 275 | name: $matches[2], |
276 | 276 | nameFormat: $matches[1] === C::NAMEFORMAT_UNSPECIFIED ? null : $matches[1], |
277 | - attributeValue: $attrValues, |
|
277 | + attributeValue : $attrValues, |
|
278 | 278 | ); |
279 | 279 | } else { |
280 | 280 | $attr[] = new Attribute( |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $wa = $request->get('wa'); |
113 | 113 | if ($wa === 'wsignout1.0') { |
114 | 114 | return new StreamedResponse( |
115 | - function () use ($idp) { |
|
115 | + function() use ($idp) { |
|
116 | 116 | ADFS_IDP::receiveLogoutMessage($idp); |
117 | 117 | }, |
118 | 118 | ); |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | $logoutError = null; |
131 | 131 | |
132 | 132 | return new StreamedResponse( |
133 | - function () use ($idp, /** @scrutinizer ignore-type */ $assocId, $relayState, $logoutError) { |
|
133 | + function() use ($idp, /** @scrutinizer ignore-type */ $assocId, $relayState, $logoutError) { |
|
134 | 134 | $idp->handleLogoutResponse($assocId, $relayState, $logoutError); |
135 | 135 | }, |
136 | 136 | ); |
@@ -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 |