Skip to content

Instantly share code, notes, and snippets.

@monbro
Created December 11, 2012 00:47
Show Gist options
  • Save monbro/4254734 to your computer and use it in GitHub Desktop.
Save monbro/4254734 to your computer and use it in GitHub Desktop.
$product = new Product();
$product->setName('A Foo Bar');
$product->setPrice('19.99');
$product->setDescription('Lorem ipsum dolor');
$em = $this->getDoctrine()->getManager();
$em->persist($product);
$em->flush();
$product->getId()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment