In file class.phpipam-api.php, on lines 191-201, the comment lists the access as private but the array itself is marked public. Is this an oversite or am I just missing the point of the access listing?
/**
* To store result
*
* @var mixed
* @access private
*/
public $result = array(
"success" => true,
"code" => 204,
"message" => ""
);
For my understanding of the later usage (with: exception, get_result , print_result , execute, curl_authenticate and?), it's an internal var, so private :-)
In file class.phpipam-api.php, on lines 191-201, the comment lists the access as private but the array itself is marked public. Is this an oversite or am I just missing the point of the access listing?