diff options
Diffstat (limited to 'lib/public/Files.php')
-rw-r--r-- | lib/public/Files.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Files.php b/lib/public/Files.php index a3787107a56..0adaeaafd2c 100644 --- a/lib/public/Files.php +++ b/lib/public/Files.php @@ -91,7 +91,7 @@ class Files { * @deprecated 14.0.0 */ public static function streamCopy($source, $target) { - list($count, ) = \OC_Helper::streamCopy($source, $target); + [$count, ] = \OC_Helper::streamCopy($source, $target); return $count; } |