Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 17:51:06 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 17:51:06 +0300
commit1584c9ae9c23d2a7915750ef9203cba0bcebf766 (patch)
tree568db931f631afd6e96772cf2b3ac539c989ec42 /lib/public/Files.php
parenta7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (diff)
Add visibility to all methods and position of static keyword
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
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 a1ff8a6d5a9..33bd3296193 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) {
+ public static 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) {
+ public static function getMimeType($path) {
return \OC::$server->getMimeTypeDetector()->detect($path);
}
@@ -77,7 +77,7 @@ class Files {
* @since 6.0.0
* @deprecated 14.0.0
*/
- static public function searchByMime($mimetype) {
+ public static function searchByMime($mimetype) {
return \OC\Files\Filesystem::searchByMime($mimetype);
}