ForumAdministrator.php 205 Bytes
Newer Older
romanb's avatar
romanb committed
1 2
<?php

3
namespace Doctrine\Tests\Models\Forum;
romanb's avatar
romanb committed
4

5
/**
6
 * @Entity
7
 */
romanb's avatar
romanb committed
8 9
class ForumAdministrator extends ForumUser
{
10
    /**
11
     * @Column(type="integer", name="access_level")
12
     */
13
    public $accessLevel;
romanb's avatar
romanb committed
14
}