Skip to content

Instantly share code, notes, and snippets.

@max107
Created November 10, 2014 11:47
Show Gist options
  • Select an option

  • Save max107/0c7370f623de6e3fa83b to your computer and use it in GitHub Desktop.

Select an option

Save max107/0c7370f623de6e3fa83b to your computer and use it in GitHub Desktop.
/**
* Return the value of any protected class variable.
*
* // Get the response parameters
* $params = $response->params;
*
* @param string variable name
* @return mixed
*/
public function __get($key)
{
return $this->$key;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment