goetas / xsd2php

Convert XSD into PHP classes and serialize into XML (deserialize too)
149 stars 62 forks source link

Metadata Issue #123

Closed victorgp89 closed 7 years ago

victorgp89 commented 7 years ago

/**

}

Is it possible not to add the properties of the parent class to the metadata?

goetas commented 7 years ago

This project is deprecated, please open issues on https://github.com/goetas-webservices/xsd2php

Is it possible not to add the properties of the parent class to the metadata?

The behavior is completely inferred from the XSD (of course there are many limitations in what can be expressed in PHP), so it your class extends "controller", will have the properties available in "controller"

Does this answer?