summaryrefslogtreecommitdiffstats
path: root/lib/archive.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-11-02 14:59:36 -0700
committerLukas Reschke <lukas@statuscode.ch>2012-11-02 14:59:36 -0700
commitfd584f446dabb1d3727a932cd5f4dbaafe63f0b8 (patch)
tree17efc1c42c3e844b69c9c19f6eba1b4cbd16f5e0 /lib/archive.php
parent2dbf2c69deaf2bb8bdf02d4539756f8f6d2b9738 (diff)
parentafadf93d317e27fd848f1e70d5849169f862aed9 (diff)
downloadnextcloud-server-fd584f446dabb1d3727a932cd5f4dbaafe63f0b8.tar.gz
nextcloud-server-fd584f446dabb1d3727a932cd5f4dbaafe63f0b8.zip
Merge pull request #220 from fmms/checkstyle02
Checkstyle: many fixes
Diffstat (limited to 'lib/archive.php')
-rw-r--r--lib/archive.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/archive.php b/lib/archive.php
index a9c245eaf43..61239c82076 100644
--- a/lib/archive.php
+++ b/lib/archive.php
@@ -42,14 +42,14 @@ abstract class OC_Archive{
* @param string source either a local file or string data
* @return bool
*/
- abstract function addFile($path,$source='');
+ abstract function addFile($path, $source='');
/**
* rename a file or folder in the archive
* @param string source
* @param string dest
* @return bool
*/
- abstract function rename($source,$dest);
+ abstract function rename($source, $dest);
/**
* get the uncompressed size of a file in the archive
* @param string path
@@ -85,7 +85,7 @@ abstract class OC_Archive{
* @param string dest
* @return bool
*/
- abstract function extractFile($path,$dest);
+ abstract function extractFile($path, $dest);
/**
* extract the archive
* @param string path
@@ -111,14 +111,14 @@ abstract class OC_Archive{
* @param string mode
* @return resource
*/
- abstract function getStream($path,$mode);
+ abstract function getStream($path, $mode);
/**
* add a folder and all it's content
* @param string $path
* @param string source
* @return bool
*/
- function addRecursive($path,$source) {
+ function addRecursive($path, $source) {
if($dh=opendir($source)) {
$this->addFolder($path);
while($file=readdir($dh)) {