There is no license information available for the latest version (dev-master) of this package.

dev-master 2016-02-25 18:28 UTC

This package is auto-updated.

Last update: 2024-09-29 04:20:03 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;
}