for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Controllers;
use Dingo\Api\Http;
use Dingo\Api\Routing\Helpers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
use Helpers;
public function __construct(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.
$this->middleware('auth');
}
public function index() {
return view('home');
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.