contemporary-va / entity
There is no license information available for the latest version (dev-master) of this package.
dev-master
2016-02-25 18:28 UTC
Requires
- illuminate/support: ~5.0
This package is auto-updated.
Last update: 2024-10-29 04:36:32 UTC
README
Meant to be used with Laravel
Creates a unified method of DTO creation.
class ExampleEntity extends AbstractEntity {
/**
* @var $id
*/
public $id;
/**
* @var $name
*/
public $name;
}