Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Models / CustomType / CustomTypeChild.php
1 <?php
2
3 namespace Doctrine\Tests\Models\CustomType;
4
5 /**
6  * @Entity
7  * @Table(name="customtype_children")
8  */
9 class CustomTypeChild
10 {
11     /**
12      * @Id @Column(type="integer")
13      * @GeneratedValue(strategy="AUTO")
14      */
15     public $id;
16
17     /**
18      * @Column(type="upper_case_string")
19      */
20     public $lowerCaseString = 'foo';
21 }