Skip to content

Commit

Permalink
Change string interpolation in SP.php
Browse files Browse the repository at this point in the history
'${} string interpolation' is deprecated since PHP 8.2
  • Loading branch information
LDAV authored Jul 1, 2024
1 parent f06b12f commit ff06b58
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -933,8 +933,8 @@ public function reauthenticate(array &$state)
* cancel the current SSO attempt.
*/
Logger::warning(
"Reauthentication after logout is needed. The IdP '${state['saml:sp:IdP']}' is not in the IDPList " .
"provided by the Service Provider '${state['core:SP']}'."
"Reauthentication after logout is needed. The IdP '{$state['saml:sp:IdP']}' is not in the IDPList " .
"provided by the Service Provider '{$state['core:SP']}'."
);

$state['saml:sp:IdPMetadata'] = $this->getIdPMetadata($state['saml:sp:IdP']);
Expand Down

0 comments on commit ff06b58

Please sign in to comment.