1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-12-11 16:49:41 +01:00

Set of PHPDOC fixes

Fixed methods visibility
This commit is contained in:
Sokolovskyy Roman 2017-08-03 09:19:11 +02:00
parent ccfb6c92bf
commit 0fd58aeb7e
3 changed files with 6 additions and 6 deletions

View File

@ -3024,7 +3024,7 @@ class SFTP extends SSH2
* Returns a string if NET_SFTP_LOGGING == self::LOG_COMPLEX, an array if NET_SFTP_LOGGING == self::LOG_SIMPLE and false if !defined('NET_SFTP_LOGGING') * Returns a string if NET_SFTP_LOGGING == self::LOG_COMPLEX, an array if NET_SFTP_LOGGING == self::LOG_SIMPLE and false if !defined('NET_SFTP_LOGGING')
* *
* @access public * @access public
* @return string or Array * @return array|string
*/ */
public function getSFTPLog() public function getSFTPLog()
{ {
@ -3086,7 +3086,7 @@ class SFTP extends SSH2
* @return bool * @return bool
* @access private * @access private
*/ */
private function disconnect_helper($reason) protected function disconnect_helper($reason)
{ {
$this->pwd = false; $this->pwd = false;
parent::disconnect_helper($reason); parent::disconnect_helper($reason);

View File

@ -1079,7 +1079,7 @@ class SSH1
* http://www.securiteam.com/securitynews/5LP042K3FY.html * http://www.securiteam.com/securitynews/5LP042K3FY.html
* *
* @see self::_send_binary_packet() * @see self::_send_binary_packet()
* @return array * @return array|bool
* @access private * @access private
*/ */
private function get_binary_packet() private function get_binary_packet()

View File

@ -652,7 +652,7 @@ class SSH2
* @see self::_get_channel_packet() * @see self::_get_channel_packet()
* @access private * @access private
*/ */
private $curTimeout; protected $curTimeout;
/** /**
* Real-time log file pointer * Real-time log file pointer
@ -890,7 +890,7 @@ class SSH2
* @param int $port * @param int $port
* @param int $timeout * @param int $timeout
* @see self::login() * @see self::login()
* @return \phpseclib\Net\SSH2 * @return SSH2|void
* @access public * @access public
*/ */
public function __construct($host, $port = 22, $timeout = 10) public function __construct($host, $port = 22, $timeout = 10)
@ -3829,7 +3829,7 @@ class SSH2
* @return bool * @return bool
* @access private * @access private
*/ */
private function disconnect_helper($reason) protected function disconnect_helper($reason)
{ {
if ($this->bitmap & self::MASK_CONNECTED) { if ($this->bitmap & self::MASK_CONNECTED) {
$data = pack('CNNa*Na*', NET_SSH2_MSG_DISCONNECT, $reason, 0, '', 0, ''); $data = pack('CNNa*Na*', NET_SSH2_MSG_DISCONNECT, $reason, 0, '', 0, '');