c2d2e45859
Also added a new testcase
27 lines
391 B
PHP
27 lines
391 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\Forum;
|
|
|
|
/**
|
|
* @Entity
|
|
* @Table(name="forum_entries")
|
|
*/
|
|
class ForumEntry
|
|
{
|
|
/**
|
|
* @Id
|
|
* @Column(type="integer")
|
|
* @GeneratedValue(strategy="AUTO")
|
|
*/
|
|
public $id;
|
|
/**
|
|
* @Column(type="string", length=50)
|
|
*/
|
|
public $topic;
|
|
|
|
public function &getTopicByReference() {
|
|
return $this->topic;
|
|
}
|
|
}
|
|
|