File "class-wc-connect-payment-gateway.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woocommerce-services/classes/class-wc-connect-payment-gateway.php
File size: 301 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if ( ! class_exists( 'WC_Connect_Payment_Gateway' ) ) {

	class WC_Connect_Payment_Gateway extends WC_Payment_Gateway {

		public function __construct( $settings ) {

			foreach ( (array) $settings as $key => $value ) {
				$this->{$key} = $value;
			}

			$this->init_settings();

		}

	}

}