SSH2/SFTP: tweak docblock comments for getLastError() / etc

This commit is contained in:
terrafrost 2024-02-07 22:42:24 -06:00
parent db27873147
commit a69364def9
2 changed files with 8 additions and 4 deletions

View File

@ -3844,7 +3844,7 @@ class Net_SFTP extends Net_SSH2
}
/**
* Returns all errors
* Returns all errors on the SFTP layer
*
* @return array
* @access public
@ -3855,7 +3855,7 @@ class Net_SFTP extends Net_SSH2
}
/**
* Returns the last error
* Returns the last error on the SFTP layer
*
* @return string
* @access public

View File

@ -4714,7 +4714,9 @@ class Net_SSH2
}
/**
* Returns all errors
* Returns all errors / debug messages on the SSH layer
*
* If you are looking for messages from the SFTP layer, please see SFTP::getSFTPErrors()
*
* @return string[]
* @access public
@ -4725,7 +4727,9 @@ class Net_SSH2
}
/**
* Returns the last error
* Returns the last error received on the SSH layer
*
* If you are looking for messages from the SFTP layer, please see SFTP::getLastSFTPError()
*
* @return string
* @access public