Releases: hostnet/entity-plugin-lib
PHP7
support:
- return types (PHP 7)
- scalar type hints (PHP 7)
- variadic parameters (PHP 5.6)
- paramters by reference (PHP 4)
Skip non-existent classes
When conditional classes are used (e.g. wrapped in an if-statement), this patch will skip processing these classes if conditions are not met in the application.
Skip non-existent classes
When conditional classes are used (e.g. wrapped in an if-statement), this patch will skip processing these classes if conditions are not met in the application.
Skip non-existent classes
When conditional classes are used (e.g. wrapped in an if-statement), this patch will skip processing these classes if conditions are not met in the application.
Generate code without process isolation
Merge pull request #36 from stefanlenselink/master Ensure the EmptyGenerated Interface do not need Reflection to deterime theire parent
Inheritance in interfaces
This release add the feature that any inheritance model that is present in the entities is also reflected in the interfaces. So if you have the following case:
class A {}
class B extends A {}
The interfaces will be generated as follows:
interface AInterface {}
interface BInterface extends AInterface {}
Note: This only works in the entities are located in the same folder. So if you extend something that is located in a different folder, the parent class will not be used.
Optional Traits for non local classes
- Optional Traits for non local classes
- Strip Generated from
@return
doc when coping over to interface doc.
More duplicate use statements fixes
Merge pull request #12 from yannickl88/master Ugh, more duplicates, higher up then
Fixed issue with multiple use statements being generated.
Merge pull request #11 from yannickl88/master Fixed issue with duplicate use statements and added return after NS line
Did you mean Recursion?
Fixed issue with two packages depending on each other causing a recursion error.