diff options
Diffstat (limited to 'lib/public/Files.php')
-rw-r--r-- | lib/public/Files.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/Files.php b/lib/public/Files.php index 1e6e9d48e03..adadbcd7aba 100644 --- a/lib/public/Files.php +++ b/lib/public/Files.php @@ -54,7 +54,7 @@ class Files { * @since 5.0.0 * @deprecated 14.0.0 */ - static public function rmdirr( $dir ) { + static public function rmdirr($dir) { return \OC_Helper::rmdirr( $dir ); } @@ -66,7 +66,7 @@ class Files { * @since 5.0.0 * @deprecated 14.0.0 */ - static public function getMimeType( $path ) { + static public function getMimeType($path) { return \OC::$server->getMimeTypeDetector()->detect($path); } @@ -89,7 +89,7 @@ class Files { * @since 5.0.0 * @deprecated 14.0.0 */ - public static function streamCopy( $source, $target ) { + public static function streamCopy($source, $target) { list($count, ) = \OC_Helper::streamCopy( $source, $target ); return $count; } |