for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Frameworkless\Controllers;
use Core\Modules\UserList\UserList;
use Symfony\Component\HttpFoundation\Response;
class IndexController extends BaseController {
/**
* Return index page (/)
*
* @param array $args
* @return Response
*/
public function get($args) {
$args
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$result = \App::getModule(UserList::class,[
"limit" => 2
]);
$result .= \App::getModule(UserList::class,[
"limit" => 1
return $this->render('pages/index.html.twig', [
"content" => $result,
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.