WC_Countries::__get( mixed $key )
Auto-load in-accessible properties on demand.
Description Description
Parameters Parameters
- $key
-
(Required) Key.
Return Return
(mixed)
Source Source
File: includes/class-wc-countries.php
public function __get( $key ) {
if ( 'countries' === $key ) {
return $this->get_countries();
} elseif ( 'states' === $key ) {
return $this->get_states();
}
}