diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-08-29 08:38:33 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-08-29 20:28:45 +0200 |
commit | 52f2e7112ea985203eca16aa787bd75a7cf92194 (patch) | |
tree | 1d1f5070b050652940847c569b1d3968bdae082c /lib/fileproxy | |
parent | 76bc4753e9bd2698415b067108806d82ac56b663 (diff) | |
download | nextcloud-server-52f2e7112ea985203eca16aa787bd75a7cf92194.tar.gz nextcloud-server-52f2e7112ea985203eca16aa787bd75a7cf92194.zip |
Whitespace fixes in lib
Diffstat (limited to 'lib/fileproxy')
-rw-r--r-- | lib/fileproxy/quota.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index 7316224cc61..4c6261fc514 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -27,7 +27,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{ private $userQuota=-1; - + /** * get the quota for the current user * @return int @@ -46,9 +46,9 @@ class OC_FileProxy_Quota extends OC_FileProxy{ $this->userQuota=OC_Helper::computerFileSize($userQuota); } return $this->userQuota; - + } - + /** * get the free space in the users home folder * @return int @@ -69,7 +69,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{ } return $totalSpace-$usedSpace; } - + public function postFree_space($path,$space){ $free=$this->getFreeSpace(); if($free==0){ |