updateStatus($other->getStatusCode()); $this->updateErrors($other->getErrorCode()); } /** * Sets the root certificates path used for verification. * * @param string|array $cainfo root certificates path * @return void * * @see openssl_verify */ public function setCainfo($cainfo) { $this->cainfo = $cainfo; } /** * Gets the root certificates path used for verification. * * @return string|array root certificates path * * @see openssl_verify */ public function getCainfo() { return $this->cainfo; } } ?>