Make Net_SSH2::isConnected() return a boolean instead of int.

This commit is contained in:
Andreas Fischer 2014-07-20 23:03:06 +02:00
parent cc64ef9d3f
commit 678d0cc792

View File

@ -820,7 +820,7 @@ class Net_SSH2
/** /**
* Number of columns for terminal window size * Number of columns for terminal window size
* *
* @see Net_SSH2::getWindowColumns() * @see Net_SSH2::getWindowColumns()
* @see Net_SSH2::setWindowColumns() * @see Net_SSH2::setWindowColumns()
* @see Net_SSH2::setWindowSize() * @see Net_SSH2::setWindowSize()
@ -831,7 +831,7 @@ class Net_SSH2
/** /**
* Number of columns for terminal window size * Number of columns for terminal window size
* *
* @see Net_SSH2::getWindowRows() * @see Net_SSH2::getWindowRows()
* @see Net_SSH2::setWindowRows() * @see Net_SSH2::setWindowRows()
* @see Net_SSH2::setWindowSize() * @see Net_SSH2::setWindowSize()
@ -2654,11 +2654,12 @@ class Net_SSH2
/** /**
* Is the connection still active? * Is the connection still active?
* *
* @return boolean
* @access public * @access public
*/ */
function isConnected() function isConnected()
{ {
return $this->bitmap & NET_SSH2_MASK_CONNECTED; return (bool) ($this->bitmap & NET_SSH2_MASK_CONNECTED);
} }
/** /**
@ -3800,7 +3801,7 @@ class Net_SSH2
/** /**
* Returns the number of columns for the terminal window size. * Returns the number of columns for the terminal window size.
* *
* @return Integer * @return Integer
* @access public * @access public
*/ */
@ -3811,7 +3812,7 @@ class Net_SSH2
/** /**
* Returns the number of rows for the terminal window size. * Returns the number of rows for the terminal window size.
* *
* @return Integer * @return Integer
* @access public * @access public
*/ */
@ -3822,7 +3823,7 @@ class Net_SSH2
/** /**
* Sets the number of columns for the terminal window size. * Sets the number of columns for the terminal window size.
* *
* @param Integer $value * @param Integer $value
* @access public * @access public
*/ */
@ -3833,7 +3834,7 @@ class Net_SSH2
/** /**
* Sets the number of rows for the terminal window size. * Sets the number of rows for the terminal window size.
* *
* @param Integer $value * @param Integer $value
* @access public * @access public
*/ */
@ -3844,7 +3845,7 @@ class Net_SSH2
/** /**
* Sets the number of columns and rows for the terminal window size. * Sets the number of columns and rows for the terminal window size.
* *
* @param Integer $columns * @param Integer $columns
* @param Integer $rows * @param Integer $rows
* @access public * @access public