1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/models/forum/ForumAdministrator.php

11 lines
239 B
PHP
Raw Normal View History

2008-02-11 22:56:26 +03:00
<?php
class ForumAdministrator extends ForumUser
{
public static function initMetadata($class)
{
2008-03-23 14:30:29 +03:00
$class->mapColumn('access_level as accessLevel', 'integer', 1);
2008-02-11 22:56:26 +03:00
}
2008-03-23 14:30:29 +03:00
public function banUser(ForumUser $user) {}
2008-02-11 22:56:26 +03:00
}