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:
authorFelix Moeller <mail@felixmoeller.de>2012-10-23 02:28:12 +0400
committerFelix Moeller <mail@felixmoeller.de>2012-10-23 02:28:12 +0400
commit6a00a6b9ed49f9a9da044772e7ca7f3506672100 (patch)
tree2c0b0a57af5befe1c8153296cbcad3ff7c6ff4cf /lib/fileproxy.php
parent03581ef463184081f8faa3f86bb6d21ee8bbc66d (diff)
Make Jenkins more happy.
This is NoSpaceAfterComma
Diffstat (limited to 'lib/fileproxy.php')
-rw-r--r--lib/fileproxy.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fileproxy.php b/lib/fileproxy.php
index 17380c656a3..3e7f1aa1c41 100644
--- a/lib/fileproxy.php
+++ b/lib/fileproxy.php
@@ -52,7 +52,7 @@ class OC_FileProxy{
* this implements a dummy proxy for all operations
*/
public function __call($function,$arguments) {
- if(substr($function,0,3)=='pre') {
+ if(substr($function, 0, 3)=='pre') {
return true;
}else{
return $arguments[1];
@@ -70,7 +70,7 @@ class OC_FileProxy{
public static function getProxies($operation) {
$proxies=array();
foreach(self::$proxies as $proxy) {
- if(method_exists($proxy,$operation)) {
+ if(method_exists($proxy, $operation)) {
$proxies[]=$proxy;
}
}