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\API\V1;
use Illuminate\Http\Request;
use DoeSangue\Http\Controllers\Controller;
class SearchController extends Controller
{
/**
* Search for donors or campaigns
*
* @param string $query
* @return void
*/
public function search(Request $request, $query)
$request
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$query
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.