I\'ve been reading Doctrine\'s documentation, but I haven\'t been able to find a way to sort findAll() Results.
I\'m using symfony2 + doctrine, this is the statemen
Look at the Doctrine API source-code :
class EntityRepository{ ... public function findAll(){ return $this->findBy(array()); } ... }