codeblanche/entity

All for Entity, and Entity for all

1.5.1 2014-12-16 13:17 UTC

This package is not auto-updated.

Last update: 2024-04-22 11:07:21 UTC


README

All for Entity, and Entity for all.

More documentation coming soon.

Example

See fixtures/* for other examples. The most complete of these being MortadellaEntity.

class MyEntity extends \Entity\Entity
{

    /**
     * @var boolean Alias of bool
     */
    public $testBoolean = true;

    /**
     * @var integer Alias of int
     */
    public $testInteger = 12345;

    /**
     * @var string
     */
    public $testString = "test string";

    /**
     * @var mixed
     */
    public $testMixed ;

    /**
     * @var array
     */
    public $testArray = array('1', '2', '3');

    /**
     * @var Entity\Sample\ObjectPropertyEntityMarshal[]
     */
    public $testTypedArray1;

    /**
     * @var array<Entity\Sample\ObjectPropertyEntityMarshal>
     */
    public $testTypedArray2;

    /**
     * @var integer[]
     */
    public $testTypedArray4;

}