for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controller\Hyperwallet;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response;
/**
* Class DefaultController
* @package App\Controller\Paypal
*
* @Route("/hyperwallet", name="hyperwallet-")
*/
class DefaultController extends AbstractController
{
* @Route("/", name="index", methods={"GET"})
* @return Response
public function index()
return $this->render('hyperwallet/index.html.twig');
}