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:
Diffstat (limited to 'lib/private/Archive/Archive.php')
-rw-r--r--lib/private/Archive/Archive.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/lib/private/Archive/Archive.php b/lib/private/Archive/Archive.php
index 5150e6ddee3..43b44e5a23a 100644
--- a/lib/private/Archive/Archive.php
+++ b/lib/private/Archive/Archive.php
@@ -34,88 +34,88 @@ abstract class Archive {
/**
* @param $source
*/
- public abstract function __construct($source);
+ abstract public function __construct($source);
/**
* add an empty folder to the archive
* @param string $path
* @return bool
*/
- public abstract function addFolder($path);
+ abstract public function addFolder($path);
/**
* add a file to the archive
* @param string $path
* @param string $source either a local file or string data
* @return bool
*/
- public abstract function addFile($path, $source='');
+ abstract public function addFile($path, $source='');
/**
* rename a file or folder in the archive
* @param string $source
* @param string $dest
* @return bool
*/
- public abstract function rename($source, $dest);
+ abstract public function rename($source, $dest);
/**
* get the uncompressed size of a file in the archive
* @param string $path
* @return int
*/
- public abstract function filesize($path);
+ abstract public function filesize($path);
/**
* get the last modified time of a file in the archive
* @param string $path
* @return int
*/
- public abstract function mtime($path);
+ abstract public function mtime($path);
/**
* get the files in a folder
* @param string $path
* @return array
*/
- public abstract function getFolder($path);
+ abstract public function getFolder($path);
/**
* get all files in the archive
* @return array
*/
- public abstract function getFiles();
+ abstract public function getFiles();
/**
* get the content of a file
* @param string $path
* @return string
*/
- public abstract function getFile($path);
+ abstract public function getFile($path);
/**
* extract a single file from the archive
* @param string $path
* @param string $dest
* @return bool
*/
- public abstract function extractFile($path, $dest);
+ abstract public function extractFile($path, $dest);
/**
* extract the archive
* @param string $dest
* @return bool
*/
- public abstract function extract($dest);
+ abstract public function extract($dest);
/**
* check if a file or folder exists in the archive
* @param string $path
* @return bool
*/
- public abstract function fileExists($path);
+ abstract public function fileExists($path);
/**
* remove a file or folder from the archive
* @param string $path
* @return bool
*/
- public abstract function remove($path);
+ abstract public function remove($path);
/**
* get a file handler
* @param string $path
* @param string $mode
* @return resource
*/
- public abstract function getStream($path, $mode);
+ abstract public function getStream($path, $mode);
/**
* add a folder and all its content
* @param string $path