Skip to content

Commit

Permalink
Merge branch 'config-extend-fix' into 'master'
Browse files Browse the repository at this point in the history
Config extend fix

See merge request !3
  • Loading branch information
Hadadi Péter committed Jul 11, 2015
2 parents 88b7c19 + 198678c commit 94e5d75
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/BigFish/PaymentGateway/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,55 +27,55 @@ class Config
* Merchant's unique identifier used in Payment Gateway.
*
* @var string
* @access private
* @access protected
*/
private $storeName = PaymentGateway::SDK_TEST_STORE_NAME;
protected $storeName = PaymentGateway::SDK_TEST_STORE_NAME;

/**
* Private API key
*
* @var string
* @access private
* @access protected
*/
private $apiKey = PaymentGateway::SDK_TEST_API_KEY;
protected $apiKey = PaymentGateway::SDK_TEST_API_KEY;

/**
* Please change this to false in your production environment.
*
* @var boolean
* @access private
* @access protected
*/
private $testMode = true;
protected $testMode = true;

/**
* Payment Gateway sends all messages in UTF-8 character encoding.
* If your system uses a different character encoding, this parameter should be changed.
* (e.g. ISO-8859-2)
*
* @var string
* @access private
* @access protected
*/
private $outCharset = 'UTF-8';
protected $outCharset = 'UTF-8';

/**
* Possible values:
* - "SOAP": RPC SOAP API
* - "REST": HTTP REST API
*
* @var string
* @access private
* @access protected
* @see PaymentGateway
*/
private $useApi = PaymentGateway::API_REST;
protected $useApi = PaymentGateway::API_REST;

/**
* It is used to encrypt sensitive data.
* Each merchant has unique private and public keys.
*
* @var string
* @access private
* @access protected
*/
private $encryptPublicKey = PaymentGateway::SDK_TEST_ENCRYPT_PUBLIC_KEY;
protected $encryptPublicKey = PaymentGateway::SDK_TEST_ENCRYPT_PUBLIC_KEY;

/**
* Contructor
Expand Down

0 comments on commit 94e5d75

Please sign in to comment.