Skip to content

Commit

Permalink
Fix XSD to allow empty <extensions> tag
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas authored and sebastianbergmann committed Jun 23, 2023
1 parent 26ad1b9 commit 49c140c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpunit.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
</xs:complexType>
<xs:complexType name="extensionsType">
<xs:sequence>
<xs:element name="extension" type="objectType" maxOccurs="unbounded"/>
<xs:element name="extension" type="objectType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="listenersType">
Expand Down

0 comments on commit 49c140c

Please sign in to comment.