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