Commit 797cdece authored by lsmith's avatar lsmith

- typo fixes

parent a8fb6cde
...@@ -44,7 +44,7 @@ class Entity extends Doctrine_Record { ...@@ -44,7 +44,7 @@ class Entity extends Doctrine_Record {
// this column is used for column // this column is used for column
// aggregation inheritance // aggregation inheritance
$this->hasColumn('type', 'integer', 11); $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 ...@@ -84,4 +84,3 @@ $group = $q->from('Entity')->where('id=?')->execute(array($group->id))->getFirst
</code> </code>
The user object is here an instance of User while the group object is an instance of Group. The user object is here an instance of User while the group object is an instance of Group.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment