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

Installs: 45

Dependents: 0

Suggesters: 0

Security: 0

pkg:composer/contemporary-va/entity

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

This package is auto-updated.

Last update: 2025-03-29 00:27:41 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;
}