From 678d0cc792739aed7e64e6913f2a219a9dcdc2a4 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 20 Jul 2014 23:03:06 +0200 Subject: [PATCH] Make Net_SSH2::isConnected() return a boolean instead of int. --- phpseclib/Net/SSH2.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/phpseclib/Net/SSH2.php b/phpseclib/Net/SSH2.php index 1222de7f..395da5a2 100644 --- a/phpseclib/Net/SSH2.php +++ b/phpseclib/Net/SSH2.php @@ -820,7 +820,7 @@ class Net_SSH2 /** * Number of columns for terminal window size - * + * * @see Net_SSH2::getWindowColumns() * @see Net_SSH2::setWindowColumns() * @see Net_SSH2::setWindowSize() @@ -831,7 +831,7 @@ class Net_SSH2 /** * Number of columns for terminal window size - * + * * @see Net_SSH2::getWindowRows() * @see Net_SSH2::setWindowRows() * @see Net_SSH2::setWindowSize() @@ -2654,11 +2654,12 @@ class Net_SSH2 /** * Is the connection still active? * + * @return boolean * @access public */ 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. - * + * * @return Integer * @access public */ @@ -3811,7 +3812,7 @@ class Net_SSH2 /** * Returns the number of rows for the terminal window size. - * + * * @return Integer * @access public */ @@ -3822,7 +3823,7 @@ class Net_SSH2 /** * Sets the number of columns for the terminal window size. - * + * * @param Integer $value * @access public */ @@ -3833,7 +3834,7 @@ class Net_SSH2 /** * Sets the number of rows for the terminal window size. - * + * * @param Integer $value * @access public */ @@ -3844,7 +3845,7 @@ class Net_SSH2 /** * Sets the number of columns and rows for the terminal window size. - * + * * @param Integer $columns * @param Integer $rows * @access public