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...
36
}
37
38
/**
39
* Flash a error message to content.
40
*
41
* @param string $title
42
* @param string $message
43
*
44
* @return mixed
45
*/
46
public static function error($title = '', $message = '')
47
{
48
$error = new MessageBag(compact('title', 'message'));
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.