| Total Complexity | 2 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class CreditCardGateway extends Gateway { |
||
| 23 | /** |
||
| 24 | * Payment method. |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | protected $payment_method = PaymentMethods::CREDIT_CARD; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Constructs and initialize credit card gateway. |
||
| 32 | */ |
||
| 33 | public function __construct() { |
||
| 45 | ); |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Get alias class name of this gateway. |
||
| 50 | * |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | public function get_alias() { |
||
| 57 |