CS adjustment

This commit is contained in:
terrafrost 2023-06-04 16:33:58 -05:00
parent 2a6f8082b0
commit dff24146af
1 changed files with 1 additions and 1 deletions

View File

@ -2841,7 +2841,7 @@ class SFTP extends SSH2
if ($name == '.' || $name == '..') {
continue;
}
$size+= is_array($file) ?
$size += is_array($file) ?
self::recursiveFilesize($file) :
$file->size;
}