diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-10-31 18:42:19 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-10-31 18:42:19 +0100 |
commit | 086d43f26d047f7078762585ce95c75ad155a6ba (patch) | |
tree | 6050de3aeb95b780109318c82d260ea1e07d596b /lib/private/Archive/Archive.php | |
parent | d805df7bb3275b33b53c4591499be0cf68f0a38a (diff) | |
download | nextcloud-server-086d43f26d047f7078762585ce95c75ad155a6ba.tar.gz nextcloud-server-086d43f26d047f7078762585ce95c75ad155a6ba.zip |
Move to non-static version
The static version is used nowhere in the code and just decreases coverage
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib/private/Archive/Archive.php')
-rw-r--r-- | lib/private/Archive/Archive.php | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/lib/private/Archive/Archive.php b/lib/private/Archive/Archive.php index da2c53f2aa1..fadc12d2a24 100644 --- a/lib/private/Archive/Archive.php +++ b/lib/private/Archive/Archive.php @@ -32,26 +32,7 @@ namespace OC\Archive; -abstract class Archive{ - /** - * Open any of the supported archive types - * - * @param string $path - * @return Archive|void - */ - public static function open($path) { - $mime = \OC::$server->getMimeTypeDetector()->detect($path); - - switch($mime) { - case 'application/zip': - return new ZIP($path); - case 'application/x-gzip': - return new TAR($path); - case 'application/x-bzip2': - return new TAR($path); - } - } - +abstract class Archive { /** * @param $source */ |