23 lines
358 B
PHP
23 lines
358 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\Forum;
|
|
|
|
/**
|
|
* @DoctrineEntity
|
|
* @DoctrineTable(name="forum_entries")
|
|
*/
|
|
class ForumEntry
|
|
{
|
|
/**
|
|
* @DoctrineId
|
|
* @DoctrineColumn(type="integer")
|
|
* @DoctrineGeneratedValue(strategy="auto")
|
|
*/
|
|
public $id;
|
|
/**
|
|
* @DoctrineColumn(type="string", length=50)
|
|
*/
|
|
public $topic;
|
|
}
|
|
|