for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Finder\Http\Controllers\Track;
use Finder\Services\FinderService;
use Illuminate\Support\Facades\Schema;
use Telefonica\Repositories\PersonRepository;
class PersonController extends Controller
{
protected $service;
public function __construct(FinderService $service)
parent::__construct();
$this->service = $service;
}
public function index(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 view('finder::finder.person.home');
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.