for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rezzza\Bundle\DemoBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class DemoController extends Controller
{
public function helloAction(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 new Response('posay');
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.