1
0
mirror of synced 2025-01-19 06:51:40 +03:00

18 lines
262 B
PHP

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