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