ForumAvatar.php 274 Bytes
Newer Older
romanb's avatar
romanb committed
1 2
<?php

3
namespace Doctrine\Tests\Models\Forum;
4

5
/**
6 7
 * @DoctrineEntity
 * @DoctrineTable(name="forum_avatars")
8
 */
9
class ForumAvatar
romanb's avatar
romanb committed
10
{
11 12 13
    /**
     * @DoctrineId
     * @DoctrineColumn(type="integer")
14
     * @DoctrineGeneratedValue(strategy="auto")
15
     */
16
    public $id;
romanb's avatar
romanb committed
17
}