Created
February 23, 2017 15:42
-
-
Save lenybernard/63a266df585fea91a9e2a32b4602fa96 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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