Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / tests / Doctrine / Tests / Models / JoinedInheritanceType / RootClass.php
1 <?php
2
3 namespace Doctrine\Tests\Models\JoinedInheritanceType;
4
5 /**
6  * @Entity
7  * @InheritanceType("JOINED")
8  */
9 class RootClass
10 {
11     /**
12      * @Column(type="integer")
13      * @Id @GeneratedValue
14      */
15     public $id;
16 }