2008-07-20 20:13:24 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\Tests\Models\Forum;
|
2008-07-20 20:13:24 +00:00
|
|
|
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-05-29 10:23:13 +00:00
|
|
|
* @Entity
|
|
|
|
* @Table(name="forum_entries")
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
|
|
|
class ForumEntry
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-05-29 10:23:13 +00:00
|
|
|
* @Id
|
|
|
|
* @Column(type="integer")
|
2009-06-07 17:20:37 +00:00
|
|
|
* @GeneratedValue(strategy="AUTO")
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $id;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-05-29 10:23:13 +00:00
|
|
|
* @Column(type="string", length=50)
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $topic;
|
2010-05-10 16:17:17 +02:00
|
|
|
|
|
|
|
public function &getTopicByReference() {
|
|
|
|
return $this->topic;
|
|
|
|
}
|
2008-07-20 20:13:24 +00:00
|
|
|
}
|
|
|
|
|