You appear to be a bot. Output may be restricted
Description
Magic GET function
Usage
$mixed = EDD_Payment::__get( $key );
Parameters
- $key
- ( string ) required – The property
Returns
mixed The value
Source
File name: easy-digital-downloads/includes/payments/class-edd-payment.php
Lines:
1 to 14 of 14
public function __get( $key ) { if ( method_exists( $this, 'get_' . $key ) ) { $value = call_user_func( array( $this, 'get_' . $key ) ); } else { $value = $this->$key; } return $value; }