Skip to content

Instantly share code, notes, and snippets.

@jonathaningram
Created August 31, 2012 01:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathaningram/3547674 to your computer and use it in GitHub Desktop.
Save jonathaningram/3547674 to your computer and use it in GitHub Desktop.
Doctrine service method to create a user that inserts a user so should use master connection
<?php
class Service
{
public function createUser(UserInterface $user)
{
$em = $this->getEntityManager();
$conn = $em->getConnection();
$conn->beginTransaction();
try {
$em->persist($user);
$em->flush();
$conn->commit();
} catch (\Exception $e) {
if ($conn->isTransactionActive()) {
$conn->rollback();
}
$em->close();
throw $e;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment