Skip to content

Commit

Permalink
Fix the headers type definition
Browse files Browse the repository at this point in the history
The headers type was defined as a choice, but it's not. It's a sequence
of strings.

See: #272
  • Loading branch information
uxen-ab committed Jun 11, 2019
1 parent 7ecbc9e commit 7c92d1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Resources/config/schema/monolog-1.0.xsd
Expand Up @@ -189,8 +189,8 @@
</xsd:complexType>

<xsd:complexType name="headers">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="header" type="xsd:string" />
</xsd:choice>
<xsd:sequence>
<xsd:element name="header" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>

0 comments on commit 7c92d1e

Please sign in to comment.