예제 #1
0
파일: ECheck.php 프로젝트: scotchphp/scotch
 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);
 }