Changeset 3890 for trunk/tests/models

Show
Ignore:
Timestamp:
02/23/08 22:04:39 (11 months ago)
Author:
romanb
Message:

validator refactorings and others

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/models/forum/ForumUser.php

    r3811 r3890  
    1717        $class->mapColumn('dtype', 'string', 50); 
    1818         
    19         // property mapping 
     19        // column mapping 
    2020        $class->mapColumn('id', 'integer', 4, array( 
    2121                'primary' => true, 
     
    2424         
    2525    } 
     26    /* 
     27    public function getUsername() 
     28    { 
     29        return $this->rawGet('username') . "!"; 
     30    } 
     31    */ 
    2632}