Skip to content

Instantly share code, notes, and snippets.

@iamshanto
Created January 20, 2015 03:00
Show Gist options
  • Save iamshanto/4fa2cd5f79142ed8828a to your computer and use it in GitHub Desktop.
Save iamshanto/4fa2cd5f79142ed8828a to your computer and use it in GitHub Desktop.
Symfony2 Form Event
$builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) {
$data = $event->getData();
$data['expires_at'] = (empty($data['expires_at'])) ? null : new \DateTime($data['expires_at']);
$event->setData($data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment