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...
34
}
35
36
/**
37
* @param bool|array $key
38
* @return Record|IsPurchasableModelTrait
39
*/
40
abstract protected function getModelFromRequest($key = false);
41
42
/**
43
* @return RecordManager
44
*/
45
abstract protected function getModelManager();
46
47
/**
48
* @return Request
49
*/
50
abstract protected function getRequest();
51
52
abstract protected function dispatchAccessDeniedResponse();
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.