Skip to content

Instantly share code, notes, and snippets.

@aziflaj
Created November 28, 2015 14:20
Show Gist options
  • Save aziflaj/58c93f0f91a07e147c34 to your computer and use it in GitHub Desktop.
Save aziflaj/58c93f0f91a07e147c34 to your computer and use it in GitHub Desktop.
<?php
// Create a user
$user = new User();
$user->setLastName("Bond");
$user->setFirstName("James");
// store a user
$entityManager = $this->getDoctrine()->getManager();
$entityManager->persist($user);
$entityManager->flush();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment