1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/Doctrine/Tests/Models/Forum/ForumAvatar.php

18 lines
274 B
PHP
Raw Normal View History

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