Skip to content

Commit a3853ad

Browse files
committed
Fix long line
1 parent 7bcf0d0 commit a3853ad

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

modules/saml/src/IdP/SAML2.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1521,7 +1521,15 @@ private static function buildResponse(
15211521
value: $idpMetadata->getString('entityid'),
15221522
Format: C::NAMEID_ENTITY,
15231523
);
1524-
$r = new SAML2_Response($status, new \DateTimeImmutable('now', new \DateTimeZone('Z')), $issuer, null, '2.0', null, $consumerURL);
1524+
$r = new SAML2_Response(
1525+
$status,
1526+
new \DateTimeImmutable('now', new \DateTimeZone('Z')),
1527+
$issuer,
1528+
null,
1529+
'2.0',
1530+
null,
1531+
$consumerURL,
1532+
);
15251533

15261534
if ($signResponse) {
15271535
Message::addSign($idpMetadata, $spMetadata, $r);

0 commit comments

Comments
 (0)