diff options
author | Niels de Blaauw <niels@level-level.com> | 2019-03-13 11:44:08 +0100 |
---|---|---|
committer | Niels de Blaauw <niels@level-level.com> | 2019-03-13 11:44:08 +0100 |
commit | d76cdbed13cd8772bed40d327b2894715f966c7b (patch) | |
tree | ce0ca8316351a860c472026d5049bce871ef74b1 /Postman/Postman-Mail/PostmanGmailApiModuleZendMailTransport.php | |
parent | 42e5e0a2f5af7bbe8a1bdb12ed079e7c62069bb7 (diff) | |
download | Post-SMTP-d76cdbed13cd8772bed40d327b2894715f966c7b.zip |
Fixes #33, fixes a couple of return type issues
Diffstat (limited to 'Postman/Postman-Mail/PostmanGmailApiModuleZendMailTransport.php')
-rw-r--r-- | Postman/Postman-Mail/PostmanGmailApiModuleZendMailTransport.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Postman/Postman-Mail/PostmanGmailApiModuleZendMailTransport.php b/Postman/Postman-Mail/PostmanGmailApiModuleZendMailTransport.php index 3cb05c9..544d5fb 100644 --- a/Postman/Postman-Mail/PostmanGmailApiModuleZendMailTransport.php +++ b/Postman/Postman-Mail/PostmanGmailApiModuleZendMailTransport.php @@ -112,7 +112,7 @@ if (! class_exists ( 'PostmanGmailApiModuleZendMailTransport' )) { * * @param string $host * OPTIONAL (Default: 127.0.0.1) - * @param array|null $config + * @param array $config * OPTIONAL (Default: null) * @return void * @@ -165,7 +165,7 @@ if (! class_exists ( 'PostmanGmailApiModuleZendMailTransport' )) { /** * Gets the connection protocol instance * - * @return Postman_Zend_Mail_Protocol|null + * @return Postman_Zend_Mail_Protocol_Abstract|null */ public function getConnection() { return $this->_connection; |