1
0
mirror of synced 2025-01-19 15:01:40 +03:00
doctrine2/tests/models/forum/ForumAdministrator.php

11 lines
239 B
PHP
Raw Normal View History

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