for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace DoeSangue\Http\Controllers;
use Illuminate\Http\Request;
class CampaignController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
//
}
* Show the form for creating a new resource.
public function create()
* Store a newly created resource in storage.
* @param \Illuminate\Http\Request $request
public function store(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.
* Display the specified resource.
* @param int $id
public function show($id)
$id
* Show the form for editing the specified resource.
public function edit($id)
* Update the specified resource in storage.
public function update(Request $request, $id)
* Remove the specified resource from storage.
public function destroy($id)
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.