public function PayPalPaymentECAuthentication::__construct in PayPal for Payment 7
Constructs a new class instance.
Parameters
string $token: See self::$token.
int $created: See self::$created.
int $pid: See self::$pid.
File
- paypal_payment_ec/
includes/ PayPalPaymentECAuthentication.inc, line 51
Class
- PayPalPaymentECAuthentication
- PayPal Express Checkout authentication.
Code
public function __construct($token = NULL, $created = NULL, $pid = 0) {
$this->created = $created;
$this->pid = $pid;
$this->token = $token;
}