Skip to content

Instantly share code, notes, and snippets.

@adatta02
Created February 8, 2013 23:45
Show Gist options
  • Save adatta02/4742913 to your computer and use it in GitHub Desktop.
Save adatta02/4742913 to your computer and use it in GitHub Desktop.
Fixing Doctrine 1.2 findOne*
public static function findOneById( $id ){
return self::getInstance()->createQuery("u")->where("u.id =?", $id)->execute()->getFirst();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment