public function PayPalPaymentIPN::__construct in PayPal for Payment 7
Constructs a new instance.
File
- paypal_payment_ipn/
includes/ PayPalPaymentIPN.inc, line 42
Class
- PayPalPaymentIPN
- A PayPal IPN.
Code
public function __construct(array $properties = array()) {
foreach ($properties as $property => $value) {
$this->{$property} = $value;
}
}