Don't use abstract

Fixes #10815
This commit is contained in:
Mike Jolley 2016-04-29 15:28:09 +01:00
parent 6a4a6d8471
commit e53704431d
3 changed files with 2 additions and 3 deletions

View File

@ -491,5 +491,4 @@ abstract class WC_Payment_Gateway extends WC_Settings_API {
$cc_form->supports = $this->supports;
$cc_form->form();
}
}

View File

@ -10,7 +10,7 @@ if ( ! defined( 'ABSPATH' ) ) {
* @package WooCommerce/Classes
* @author WooThemes
*/
abstract class WC_Payment_Gateway_CC extends WC_Payment_Gateway {
class WC_Payment_Gateway_CC extends WC_Payment_Gateway {
/**
* Builds our payment fields area - including tokenization fields and the actualy payment fields.

View File

@ -10,7 +10,7 @@ if ( ! defined( 'ABSPATH' ) ) {
* @package WooCommerce/Classes
* @author WooThemes
*/
abstract class WC_Payment_Gateway_eCheck extends WC_Payment_Gateway {
class WC_Payment_Gateway_eCheck extends WC_Payment_Gateway {
/**
* Builds our payment fields area - including tokenization fields and the actualy payment fields.