1
0
mirror of synced 2025-03-24 17:03:56 +03:00

Fixed missing comma in code example

This commit is contained in:
pbowyer 2007-10-31 10:33:46 +00:00
parent 39b8a3e3e2
commit e9a9527453

View File

@ -291,7 +291,7 @@ class User extends Doctrine_Record
{
$this->hasMany('User as Friend', array('local' => 'user1',
'foreign' => 'user2',
'refClass' => 'UserReference'
'refClass' => 'UserReference',
'equal' => true,
);
}