Skip to content

Instantly share code, notes, and snippets.

@elnur
Created May 20, 2015 16:37
Show Gist options
  • Save elnur/db7087692d381ecaa9bf to your computer and use it in GitHub Desktop.
Save elnur/db7087692d381ecaa9bf to your computer and use it in GitHub Desktop.
public function registerAction(Request $request)
{
$user = new User();
$form = $this->formFactory->create('user', $user);
$form->handleRequest($request);
if ($form->isValid()) {
$this->userManager->save($user);
// ...
}
return [
'form' => $form->createView(),
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment