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 WidgetsController 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(Request $request)
public function show(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.