You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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" => ""
);
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: