Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Models / Generic / SerializationModel.php
1 <?php
2
3 namespace Doctrine\Tests\Models\Generic;
4
5 /**
6  * @Entity
7  * @Table(name="serialize_model")
8  */
9 class SerializationModel
10 {
11     /**
12      * @Id @Column(type="integer")
13      * @GeneratedValue(strategy="AUTO")
14      */
15     public $id;
16     /**
17      * @Column(name="the_array", type="array", nullable=true)
18      */
19     public $array;
20
21     /**
22      * @Column(name="the_obj", type="object", nullable=true)
23      */
24     public $object;
25 }