for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
class DefaultController extends Controller
{
/**
* @Route("/", name="homepage")
* @Method({"GET"})
*/
public function indexAction(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->redirect('https://kyberia.sk');
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.