for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Loevgaard\DandomainAltapayBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
* @Route("/callback")
*/
class CallbackController extends Controller {
* @Method("POST")
* @Route("/form", name="loevgaard_dandomain_altapay_callback_form")
*
* @param Request $request
* @return Response
public function formAction(Request $request)
$request
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
{
return $this->render('@LoevgaardDandomainAltapay/callback/form.html.twig');
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.