1
0
mirror of synced 2025-01-30 12:01:44 +03:00

- typo fixes

This commit is contained in:
lsmith 2007-05-11 18:34:56 +00:00
parent a8fb6cde01
commit 797cdece48

View File

@ -44,7 +44,7 @@ class Entity extends Doctrine_Record {
// this column is used for column
// aggregation inheritance
$this->hasColumn('type', 'integer', 11);
$this->option('subclasses', array('User', 'Group');
$this->option('subclasses', array('User', 'Group'));
}
}
@ -84,4 +84,3 @@ $group = $q->from('Entity')->where('id=?')->execute(array($group->id))->getFirst
</code>
The user object is here an instance of User while the group object is an instance of Group.