diff --git a/gnupg/gnupg.php b/gnupg/gnupg.php index 3c37da94f..263de6c51 100644 --- a/gnupg/gnupg.php +++ b/gnupg/gnupg.php @@ -248,14 +248,6 @@ public function getprotocol() {} */ public function import($kye) {} - /** - * Initialize a connection - * @link https://php.net/manual/en/function.gnupg-init.php - * - * @return resource A GnuPG ``resource`` connection used by other GnuPG functions. - */ - public function init() {} - /** * Returns an array with information about all keys that matches the given pattern * @link https://php.net/manual/en/function.gnupg-keyinfo.php @@ -308,8 +300,20 @@ public function setsignmode($signmode) {} */ public function sign($text) {} + /** + * Returns the engine info + * @link https://php.net/manual/en/function.gnupg-getengineinfo.php + * + * @return array + */ public function getengineinfo() {} + /** + * Returns the error info + * @link https://php.net/manual/en/function.gnupg-geterrorinfo.php + * + * @return array + */ public function geterrorinfo() {} }