You appear to be a bot. Output may be restricted
Description
Usage
IpnHandler::__get( $name );
Parameters
- $name
- ( mixed ) required –
Returns
void
Source
File name: easy-digital-downloads/includes/gateways/libs/amazon/IpnHandler.php
Lines:
1 to 8 of 8
public function __get($name) { if (array_key_exists(strtolower($name), $this->ipnConfig)) { return $this->ipnConfig[$name]; } else { throw new \Exception("Key " . $name . " was not found in the configuration", 1); } }