1
0
mirror of synced 2025-01-18 22:41:43 +03:00

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;
}