Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Models / CustomType / CustomTypeUpperCase.php
1 <?php
2
3 namespace Doctrine\Tests\Models\CustomType;
4
5 /**
6  * @Entity
7  * @Table(name="customtype_uppercases")
8  */
9 class CustomTypeUpperCase
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;
21
22     /**
23      * @Column(type="upper_case_string", name="named_lower_case_string", nullable = true)
24      */
25     public $namedLowerCaseString;
26 }