1
0
mirror of synced 2025-01-31 12:32:59 +03:00

17 lines
249 B
PHP
Raw Normal View History

2008-08-16 19:40:59 +00:00
<?php
namespace Doctrine\Tests\Models\Forum;
/**
* @DoctrineEntity(tableName="forum_avatars")
*/
class ForumAvatar
2008-08-16 19:40:59 +00:00
{
/**
* @DoctrineId
* @DoctrineColumn(type="integer")
* @DoctrineIdGenerator("auto")
*/
public $id;
2008-08-16 19:40:59 +00:00
}