Total Complexity | 1 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 5 | ||
Bugs | 0 | Features | 4 |
1 | <?php |
||
22 | trait PurchaseControllerTrait |
||
23 | { |
||
24 | use PurchaseRedirectActionsTrait; |
||
25 | use PurchaseConfirmActionsTrait; |
||
26 | use PurchaseIpnActionsTrait; |
||
27 | |||
28 | /** |
||
29 | * @return GatewaysManager |
||
30 | */ |
||
31 | protected function getGatewaysManager() |
||
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(); |
||
53 | } |
||
54 |
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.