| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class IDealGateway extends Gateway { |
||
| 24 | /** |
||
| 25 | * Payment method. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $payment_method = PaymentMethods::IDEAL; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Get icon function, please not that this is not a MemberPress function. |
||
| 33 | * |
||
| 34 | * @since 1.0.2 |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | protected function get_icon() { |
||
| 38 | return plugins_url( 'images/ideal/icon-32x32.png', Plugin::$file ); |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Get alias class name of this gateway. |
||
| 43 | * |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function get_alias() { |
||
| 48 | } |
||
| 49 | } |
||
| 50 |