diff options
Diffstat (limited to 'ext/soap/tests/schema/schema082.phpt')
-rw-r--r-- | ext/soap/tests/schema/schema082.phpt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/soap/tests/schema/schema082.phpt b/ext/soap/tests/schema/schema082.phpt index 34c4c76c25..229e566afc 100644 --- a/ext/soap/tests/schema/schema082.phpt +++ b/ext/soap/tests/schema/schema082.phpt @@ -6,15 +6,15 @@ SOAP XML Schema 82: SOAP 1.1 Array with SOAP_USE_XSI_ARRAY_TYPE (second way) <?php include "test_schema.inc"; $schema = <<<EOF - <complexType name="testType"> - <complexContent> - <restriction base="SOAP-ENC:Array"> - <all> - <element name="x_item" type="int" maxOccurs="unbounded"/> - </all> - </restriction> + <complexType name="testType"> + <complexContent> + <restriction base="SOAP-ENC:Array"> + <all> + <element name="x_item" type="int" maxOccurs="unbounded"/> + </all> + </restriction> </complexContent> - </complexType> + </complexType> EOF; test_schema($schema,'type="tns:testType"',array(123,123.5),"rpc","encoded",'',SOAP_USE_XSI_ARRAY_TYPE); echo "ok"; |