i'm working on a tree, on object oriented programming through Doctrine2, where $this->page is a tree node and $this->page->getChilds() returns its childs.
But they have a `$private->order property/field mapped to an integer so you can know should be first/last listed.
Do you know if i could run something like $this->page->getChilds()->orderBy($this->order); ? I mean as it all is later converted to sql i would like to pass some instructions as an order by i.e.