18 lines
234 B
PHP
18 lines
234 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\Forum;
|
|
|
|
/**
|
|
* @Entity
|
|
* @Table(name="forum_avatars")
|
|
*/
|
|
class ForumAvatar
|
|
{
|
|
/**
|
|
* @Id
|
|
* @Column(type="integer")
|
|
* @GeneratedValue(strategy="AUTO")
|
|
*/
|
|
public $id;
|
|
}
|