<?phpclassTreeLeafextendsDoctrine_Record{publicfunctionsetTableDefinition(){$this->hasColumn('name','string');$this->hasColumn('parent_id','integer');}publicfunctionsetUp(){$this->hasOne('TreeLeaf as Parent','TreeLeaf.parent_id');$this->hasMany('TreeLeaf as Children','TreeLeaf.parent_id');}}