2008-07-20 20:13:24 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-04 16:15:32 +00:00
|
|
|
#namespace Doctrine\Tests\Models\Forum;
|
2008-07-20 20:13:24 +00:00
|
|
|
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineEntity
|
|
|
|
*/
|
|
|
|
class ForumEntry
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineId
|
|
|
|
* @DoctrineColumn(type="integer")
|
|
|
|
* @DoctrineIdGenerator("auto")
|
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $id;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="string", length=50)
|
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $topic;
|
2008-07-20 20:13:24 +00:00
|
|
|
}
|
|
|
|
|