Skip to content

Instantly share code, notes, and snippets.

@lenybernard
Created February 23, 2017 15:42
Show Gist options
  • Select an option

  • Save lenybernard/63a266df585fea91a9e2a32b4602fa96 to your computer and use it in GitHub Desktop.

Select an option

Save lenybernard/63a266df585fea91a9e2a32b4602fa96 to your computer and use it in GitHub Desktop.
<?php
namespace AppBundle/Controller;
class PaymentController extends Controller
{
public function paymentAction($redurectUrl)
{
$form = $this->get('app.payment.form_handler')->generateForm($redirectUrl);
return $this->render('AppBundle:Payment:form.html.twig', [
'form' => $form->createView(),
]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment