From b3931bd212162c133c5d8288ce9f74009170c548 Mon Sep 17 00:00:00 2001 From: Sam Mousa Date: Fri, 16 Aug 2024 10:08:11 +0200 Subject: [PATCH] chore(cs): fix indentation changes not related to the feature --- phpseclib/Net/SFTP.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/phpseclib/Net/SFTP.php b/phpseclib/Net/SFTP.php index 00fd39d2..e068cda6 100644 --- a/phpseclib/Net/SFTP.php +++ b/phpseclib/Net/SFTP.php @@ -717,7 +717,7 @@ class SFTP extends SSH2 // assume current dir if $dir is empty if ($dir === '') { $dir = './'; - // suffix a slash if needed + // suffix a slash if needed } elseif ($dir[-1] != '/') { $dir .= '/'; } @@ -3024,9 +3024,7 @@ class SFTP extends SSH2 throw new RuntimeException('Packet is too small'); } extract(unpack('Nlength', Strings::shift($this->packet_buffer, 4))); - /** - * @var integer $length -*/ + /** @var integer $length */ $tempLength = $length; $tempLength -= strlen($this->packet_buffer);