The method make() does not seem to exist on object<PerfectOblivion\Valid\Sanitizer\Sanitizer>.
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...
29
$this->replace($this->sanitizer->sanitize());
30
}
31
32
/**
33
* Filters to be applied to the input.
34
*
35
* @return array
36
*/
37
public function filters()
38
{
39
return [];
40
}
41
42
/**
43
* Validation rules to be applied to the input.
44
*
45
* @return array
46
*/
47
public function rules()
48
{
49
return [];
50
}
51
52
/**
53
* Determine if the user is authorized to make this request.
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.