Skip to content

Instantly share code, notes, and snippets.

@benglass
Created June 4, 2014 18:13
Show Gist options
  • Save benglass/5386deeae289986e510b to your computer and use it in GitHub Desktop.
Save benglass/5386deeae289986e510b to your computer and use it in GitHub Desktop.
<?php
$em = $container->get('doctrine.orm.default_entity_manager');
$repo = $em->getRepository('VDWVTFABundle:Organization');
$org = $repo->findOneByName('Vermont Sustainable Jobs Fund');
$org->setName('HAHAHA BAD CRAP');
$em->flush();
// Org name is now HAHAHA Bad Crap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment