Skip to content

Commit d23dce1

Browse files
committed
Add missing trailing comma
1 parent 9592ebe commit d23dce1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/XML/md/SPSSODescriptor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function (AttributeConsumingService $acs) {
107107
},
108108
),
109109
1,
110-
'Only one md:AttributeConsumingService can be set as default.',
110+
'At most one <AttributeConsumingService> element can have the attribute isDefault set to true.',
111111
);
112112
}
113113

tests/SAML2/XML/md/SPSSODescriptorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public function testUnmarshallingTwoDefaultACS(): void
287287

288288
$this->expectException(AssertionFailedException::class);
289289
$this->expectExceptionMessage(
290-
'At most one <AttributeConsumingService> element can have the attribute isDefault set to true.'
290+
'At most one <AttributeConsumingService> element can have the attribute isDefault set to true.',
291291
);
292292

293293
SPSSODescriptor::fromXML($xmlRepresentation->documentElement);

0 commit comments

Comments
 (0)