2008-02-11 19:56:26 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-04 16:15:32 +00:00
|
|
|
#namespace Doctrine\Tests\Models\Forum;
|
|
|
|
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineEntity
|
|
|
|
*/
|
2008-02-11 19:56:26 +00:00
|
|
|
class ForumAdministrator extends ForumUser
|
|
|
|
{
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="integer", name="access_level")
|
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $accessLevel;
|
2008-02-11 19:56:26 +00:00
|
|
|
}
|