Pop\Payment\Adapter\UsaEpay::__construct PHP 메소드

__construct() 공개 메소드

Method to instantiate an USAEpay payment adapter object
public __construct ( string $sourceKey, boolean $test = false ) : UsaEpay
$sourceKey string
$test boolean
리턴 UsaEpay
    public function __construct($sourceKey, $test = false)
    {
        $this->sourceKey = $sourceKey;
        $this->transaction['UMkey'] = $sourceKey;
        $this->test = $test;
    }