SSH2: add phpdoc header

This commit is contained in:
terrafrost 2014-04-06 23:56:21 -05:00
parent a14e71f38b
commit fc748346fc

View File

@ -804,11 +804,10 @@ class Net_SSH2
/** /**
* Default Constructor. * Default Constructor.
* *
* Connects to an SSHv2 server
*
* @param String $host * @param String $host
* @param optional Integer $port * @param optional Integer $port
* @param optional Integer $timeout * @param optional Integer $timeout
* @see login
* @return Net_SSH2 * @return Net_SSH2
* @access public * @access public
*/ */
@ -903,6 +902,12 @@ class Net_SSH2
$this->timeout = $timeout; $this->timeout = $timeout;
} }
/**
* Connect to an SSHv2 server
*
* @return Boolean
* @access private
*/
function _connect() function _connect()
{ {
$timeout = $this->timeout; $timeout = $this->timeout;