summaryrefslogtreecommitdiffstats
path: root/lib/fileproxy.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-08-29 08:38:33 +0200
committerBart Visscher <bartv@thisnet.nl>2012-08-29 20:28:45 +0200
commit52f2e7112ea985203eca16aa787bd75a7cf92194 (patch)
tree1d1f5070b050652940847c569b1d3968bdae082c /lib/fileproxy.php
parent76bc4753e9bd2698415b067108806d82ac56b663 (diff)
downloadnextcloud-server-52f2e7112ea985203eca16aa787bd75a7cf92194.tar.gz
nextcloud-server-52f2e7112ea985203eca16aa787bd75a7cf92194.zip
Whitespace fixes in lib
Diffstat (limited to 'lib/fileproxy.php')
-rw-r--r--lib/fileproxy.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/fileproxy.php b/lib/fileproxy.php
index ec04faa9bc5..a1c79874bf7 100644
--- a/lib/fileproxy.php
+++ b/lib/fileproxy.php
@@ -43,7 +43,7 @@
class OC_FileProxy{
private static $proxies=array();
public static $enabled=true;
-
+
/**
* fallback function when a proxy operation is not implemented
* @param string $function the name of the proxy operation
@@ -58,7 +58,7 @@ class OC_FileProxy{
return $arguments[1];
}
}
-
+
/**
* register a proxy to be used
* @param OC_FileProxy $proxy
@@ -66,7 +66,7 @@ class OC_FileProxy{
public static function register($proxy){
self::$proxies[]=$proxy;
}
-
+
public static function getProxies($operation){
$proxies=array();
foreach(self::$proxies as $proxy){