2008-05-08 14:17:35 +00:00
|
|
|
<?php
|
2009-01-04 16:15:32 +00:00
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\Tests\Models\Forum;
|
2009-01-04 16:15:32 +00:00
|
|
|
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* Represents a board in a forum.
|
|
|
|
*
|
|
|
|
* @author robo
|
|
|
|
* @DoctrineEntity
|
2009-02-04 16:35:36 +00:00
|
|
|
* @DoctrineTable(name="forum_boards")
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
class ForumBoard
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineId
|
|
|
|
* @DoctrineColumn(type="integer")
|
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $id;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="integer")
|
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $position;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-02-04 16:35:36 +00:00
|
|
|
* @DoctrineManyToOne(targetEntity="ForumCategory")
|
|
|
|
* @DoctrineJoinColumn(name="category_id", referencedColumnName="id")
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $category;
|
2008-05-08 14:17:35 +00:00
|
|
|
}
|