summaryrefslogtreecommitdiff
path: root/Postman/Postman-Configuration/PostmanSmtpDiscovery.php
diff options
context:
space:
mode:
Diffstat (limited to 'Postman/Postman-Configuration/PostmanSmtpDiscovery.php')
-rw-r--r--Postman/Postman-Configuration/PostmanSmtpDiscovery.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/Postman/Postman-Configuration/PostmanSmtpDiscovery.php b/Postman/Postman-Configuration/PostmanSmtpDiscovery.php
index 2d568cd..44da3bb 100644
--- a/Postman/Postman-Configuration/PostmanSmtpDiscovery.php
+++ b/Postman/Postman-Configuration/PostmanSmtpDiscovery.php
@@ -117,7 +117,7 @@ if (! class_exists ( 'PostmanSmtpDiscovery' )) {
/**
* Constructor
*
- * @param unknown $email
+ * @param mixed $email
*/
public function __construct($email) {
$this->email = $email;
@@ -137,8 +137,8 @@ if (! class_exists ( 'PostmanSmtpDiscovery' )) {
}
/**
*
- * @param unknown $email
- * @return Ambigous <number, boolean>
+ * @param mixed $email
+ * @return string|bool
*/
private function validateEmail($email) {
return PostmanUtils::validateEmail ( $email );
@@ -171,7 +171,7 @@ if (! class_exists ( 'PostmanSmtpDiscovery' )) {
/**
* Uses getmxrr to retrieve the MX records of a hostname
*
- * @param unknown $hostname
+ * @param mixed $hostname
* @return mixed|boolean
*/
private function findMxHostViaDns($hostname) {
@@ -201,9 +201,9 @@ if (! class_exists ( 'PostmanSmtpDiscovery' )) {
* This is a custom implementation of mxrr for Windows PHP installations
* which don't have this method natively.
*
- * @param unknown $hostname
- * @param unknown $mxhosts
- * @param unknown $mxweight
+ * @param mixed $hostname
+ * @param mixed $mxhosts
+ * @param mixed $mxweight
* @return boolean
*/
function getmxrr($hostname, &$mxhosts, &$mxweight) {