1
0
mirror of synced 2025-01-20 23:41:39 +03:00

28 lines
485 B
PHP
Raw Normal View History

2008-05-08 14:17:35 +00:00
<?php
2009-01-04 16:15:32 +00:00
namespace Doctrine\Tests\Models\Forum;
2009-01-04 16:15:32 +00:00
/**
* Represents a board in a forum.
*
* @author robo
* @DoctrineEntity
*/
class ForumBoard
{
/**
* @DoctrineId
* @DoctrineColumn(type="integer")
*/
public $id;
/**
* @DoctrineColumn(type="integer")
*/
public $position;
/**
* @DoctrineManyToOne(targetEntity="Doctrine\Tests\Models\Forum\ForumCategory",
joinColumns={"category_id" = "id"})
*/
public $category;
2008-05-08 14:17:35 +00:00
}