summaryrefslogtreecommitdiffstats
path: root/lib/public/Files.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Files.php')
-rw-r--r--lib/public/Files.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/Files.php b/lib/public/Files.php
index adadbcd7aba..a1ff8a6d5a9 100644
--- a/lib/public/Files.php
+++ b/lib/public/Files.php
@@ -55,7 +55,7 @@ class Files {
* @deprecated 14.0.0
*/
static public function rmdirr($dir) {
- return \OC_Helper::rmdirr( $dir );
+ return \OC_Helper::rmdirr($dir);
}
/**
@@ -90,7 +90,7 @@ class Files {
* @deprecated 14.0.0
*/
public static function streamCopy($source, $target) {
- list($count, ) = \OC_Helper::streamCopy( $source, $target );
+ list($count, ) = \OC_Helper::streamCopy($source, $target);
return $count;
}
@@ -115,6 +115,6 @@ class Files {
* @deprecated 14.0.0 use IAppData instead
*/
public static function getStorage($app) {
- return \OC_App::getStorage( $app );
+ return \OC_App::getStorage($app);
}
}