for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Lug package.
*
* (c) Eric GELOEN <[email protected]>
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code.
*/
namespace Lug\Bundle\AdminBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
* @author GeLo <[email protected]>
class DashboardController extends Controller
{
* @param Request $request
* @return Response
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->render('@LugAdmin/Dashboard/index.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.