| Total Complexity | 2 | 
| Total Lines | 25 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 0 | ||
| 1 | <?php | ||
| 22 | class BankTransferGateway extends Gateway { | ||
| 23 | /** | ||
| 24 | * Payment method. | ||
| 25 | * | ||
| 26 | * @var string | ||
| 27 | */ | ||
| 28 | protected $payment_method = PaymentMethods::BANK_TRANSFER; | ||
| 29 | |||
| 30 | /** | ||
| 31 | * Get alias class name of this gateway. | ||
| 32 | * | ||
| 33 | * @return string | ||
| 34 | */ | ||
| 35 | 	public function get_alias() { | ||
| 37 | } | ||
| 38 | |||
| 39 | /** | ||
| 40 | * Get icon function, please note that this is not a MemberPress function. | ||
| 41 | * | ||
| 42 | * @since 2.0.8 | ||
| 43 | * @return string | ||
| 44 | */ | ||
| 45 | 	protected function get_icon() { | ||
| 49 | 
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.