Skip to content

Releases: hostnet/entity-plugin-lib

PHP7

23 Nov 06:53
Compare
Choose a tag to compare
PHP7 Pre-release
Pre-release

support:

  • return types (PHP 7)
  • scalar type hints (PHP 7)
  • variadic parameters (PHP 5.6)
  • paramters by reference (PHP 4)

Skip non-existent classes

18 Aug 10:00
Compare
Choose a tag to compare

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

18 Aug 09:57
Compare
Choose a tag to compare
Pre-release

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

17 Aug 14:58
Compare
Choose a tag to compare
Pre-release

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

09 Jun 14:02
Compare
Choose a tag to compare
Merge pull request #36 from stefanlenselink/master

Ensure the EmptyGenerated Interface do not need Reflection to deterime theire parent

Inheritance in interfaces

29 Mar 10:18
Compare
Choose a tag to compare

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

22 Dec 15:52
Compare
Choose a tag to compare
  • Optional Traits for non local classes
  • Strip Generated from @return doc when coping over to interface doc.

More duplicate use statements fixes

28 Jul 09:36
Compare
Choose a tag to compare
Merge pull request #12 from yannickl88/master

Ugh, more duplicates, higher up then

Fixed issue with multiple use statements being generated.

24 Jul 12:48
Compare
Choose a tag to compare
Merge pull request #11 from yannickl88/master

Fixed issue with duplicate use statements and added return after NS line

Did you mean Recursion?

17 Jul 12:50
Compare
Choose a tag to compare

Fixed issue with two packages depending on each other causing a recursion error.