If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
32
$request->/** @scrutinizer ignore-call */
33
validate([
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
33
'email' => 'required|email',
34
]);
35
36
// We will send the password reset link to this user. Once we have attempted
37
// to send the link, we will examine the response then see the message we
38
// need to show to the user. Finally, we'll send out a proper response.
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
40
$request->/** @scrutinizer ignore-call */
41
only('email')
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.