Skip to content

Instantly share code, notes, and snippets.

@Chrysweel
Created July 2, 2013 10:23
Show Gist options
  • Save Chrysweel/5908221 to your computer and use it in GitHub Desktop.
Save Chrysweel/5908221 to your computer and use it in GitHub Desktop.
Get the error from a form and send this error by rest
public function createAction(Request $request)
{
$entity = new Channel();
$form = $this->createForm(new ChannelType(), $entity);
$form->bind($request);
if ($form->isValid()) {
$this->get('api.model.channel_manager')->save($entity);
$view = $this->view($entity, 201);
return $this->handleView($view);
}else{
$form->getErrorsAsString(); //this return errors
$form->getErrors(); // this return array empty
}
$view = $this->view($form, 400);
return $this->handleView($view);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment