The call to Illuminate\Foundation\Http\FormRequest::validate() has too many arguments starting with array('name' => 'required').
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
42
$request->/** @scrutinizer ignore-call */
43
validate([
This check compares calls to functions or methods with their respective definitions.
If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the
check may pick up the wrong definition and report false positives. One codebase
where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.
Loading history...
43
'name' => 'required',
44
]);
45
$task->name = $request->name;
46
$task->save();
47
48
return $task;
49
}
50
51
public function complete(CompleteTask $request, Task $task)
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.