1
0
mirror of synced 2025-01-18 22:41:43 +03:00

17 lines
249 B
PHP

<?php
namespace Doctrine\Tests\Models\Forum;
/**
* @DoctrineEntity(tableName="forum_avatars")
*/
class ForumAvatar
{
/**
* @DoctrineId
* @DoctrineColumn(type="integer")
* @DoctrineIdGenerator("auto")
*/
public $id;
}