You appear to be a bot. Output may be restricted
Description
Retrieve the client object
Usage
$PayWithAmazon\Client = EDD_Amazon_Payments::get_client();
Parameters
Returns
PayWithAmazon\Client
Source
File name: easy-digital-downloads/includes/gateways/amazon-payments.php
Lines:
1 to 14 of 14
private function get_client() { if ( ! $this->is_setup() ) { return false; } if ( ! is_null( $this->client ) ) { return $this->client; } $this->setup_client(); return $this->client; }