SSH2: add phpdoc header

This commit is contained in:
terrafrost 2014-04-06 23:56:21 -05:00
parent a14e71f38b
commit fc748346fc
1 changed files with 7 additions and 2 deletions

View File

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