From c38fde1fe077522dd41300f3692c517cb1c4bd55 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Thu, 28 Nov 2024 17:19:28 -0600 Subject: [PATCH] CS adjustments --- phpseclib/Net/SSH2.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/phpseclib/Net/SSH2.php b/phpseclib/Net/SSH2.php index ae22fc7a..f0100f46 100644 --- a/phpseclib/Net/SSH2.php +++ b/phpseclib/Net/SSH2.php @@ -5548,8 +5548,10 @@ class SSH2 /** * How many bytes until the next key re-exchange? + * + * @param int $bytes */ - function bytesUntilKeyReexchange($bytes) + public function bytesUntilKeyReexchange($bytes) { $this->doKeyReexchangeAfterXBytes = $bytes; }