示例#1
0
 function __construct($properties = null)
 {
     parent::__construct($properties);
     $this->paymentType = PaymentTypes::ECheck;
     $this->accountNumber = $this->cleanseAccountNumber($this->accountNumber);
     $this->accountNumberConfirm = $this->cleanseAccountNumber($this->accountNumberConfirm);
     $this->routingNumber = $this->cleanseRoutingNumber($this->routingNumber);
 }
示例#2
0
 function __construct($properties = array())
 {
     parent::__construct($properties);
     $this->paymentType = PaymentTypes::CreditCard;
     $this->creditCardNumber = $this->cleanseCreditCardNumber($this->creditCardNumber);
 }