Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Detect nillable lists #33

Merged
merged 1 commit into from
Jan 10, 2025
Merged

Detect nillable lists #33

merged 1 commit into from
Jan 10, 2025

Conversation

veewee
Copy link
Member

@veewee veewee commented Jan 9, 2025

Q A
Type improvement
BC Break no
Fixed issues

Summary

This PR introduces support for nil-able lists.

<complexType name="ArrayOfCompany">
        <sequence>
            <element minOccurs="0" maxOccurs="unbounded" name="Company" nillable="true" type="tns:Company" />
        </sequence>
    </complexType>

Rules:

  • No <Company /> occurence : []
  • Single <Compani xsi:nil="true" :>: null
  • Single regular <Company />: [object]
  • Multiple <Company />: [object, ...]

@BackEndTea
Copy link

Thanks for the quick fix @veewee. This fixes the issue on our side!

@veewee veewee merged commit 356e5dd into php-soap:main Jan 10, 2025
14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants