Skip to content

Commit

Permalink
Fixes #3248
Browse files Browse the repository at this point in the history
  • Loading branch information
theseer authored and sebastianbergmann committed Aug 12, 2018
1 parent 5268f94 commit e614816
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions phpunit.xsd
Expand Up @@ -18,12 +18,14 @@
</xs:complexType>
<xs:complexType name="filterType">
<xs:sequence>
<xs:group ref="pathGroup"/>
<xs:element name="exclude" maxOccurs="unbounded" minOccurs="0">
<xs:complexType>
<xs:group ref="pathGroup"/>
</xs:complexType>
</xs:element>
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:group ref="pathGroup"/>
<xs:element name="exclude">
<xs:complexType>
<xs:group ref="pathGroup"/>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:sequence>
</xs:complexType>
<xs:complexType name="whiteListType">
Expand Down Expand Up @@ -146,8 +148,10 @@
</xs:complexType>
<xs:group name="pathGroup">
<xs:sequence>
<xs:element name="directory" type="directoryFilterType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="file" type="fileFilterType" minOccurs="0" maxOccurs="unbounded"/>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="directory" type="directoryFilterType"/>
<xs:element name="file" type="fileFilterType"/>
</xs:choice>
</xs:sequence>
</xs:group>
<xs:complexType name="directoryFilterType">
Expand Down

0 comments on commit e614816

Please sign in to comment.