Skip to content

Instantly share code, notes, and snippets.

@sokil
Last active January 16, 2017 09:53
Show Gist options
  • Save sokil/9489257d4882ec6d3420 to your computer and use it in GitHub Desktop.
Save sokil/9489257d4882ec6d3420 to your computer and use it in GitHub Desktop.
Create symfony form without prefix
<?php
$formFactory = $this->container->get('form.factory');
$form = $formFactory->createNamed(
null,
new RegistrationFormType('\Vendor\AcmeBundle\Entity\SomeEntity'),
$user,
[
'method' => $request->getMethod(),
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment