22 lines
307 B
PHP
22 lines
307 B
PHP
<?php
|
|
|
|
#namespace Doctrine\Tests\Models\Forum;
|
|
|
|
/**
|
|
* @DoctrineEntity
|
|
*/
|
|
class ForumEntry
|
|
{
|
|
/**
|
|
* @DoctrineId
|
|
* @DoctrineColumn(type="integer")
|
|
* @DoctrineIdGenerator("auto")
|
|
*/
|
|
public $id;
|
|
/**
|
|
* @DoctrineColumn(type="string", length=50)
|
|
*/
|
|
public $topic;
|
|
}
|
|
|