Last Updated: February 25, 2016
·
612
· limonazzo

Update Doctrine - PHP

Get "entity manager"

$em = $this->getDoctrine()->getEntityManager();

select the entity to update ByID

$user = $em->getRepository('Entity\User')->find($id);

update the value:

$user->setName('Isaac Limón');

Save:

$em->persist($user);
$em->flush();