X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FZip.php;h=2ef4c7915d0081731d12e4161222c1d11c3618f1;hb=cf726992aa4ce457eb4fba768b075085167ad7cb;hp=eaad2fa7a9f31224af556c3340ce06c15fa322ec;hpb=5afcf74389296764bd92ed3bc3b2f5f209933bfe;p=civicrm-core.git diff --git a/CRM/Utils/Zip.php b/CRM/Utils/Zip.php index eaad2fa7a9..2ef4c7915d 100644 --- a/CRM/Utils/Zip.php +++ b/CRM/Utils/Zip.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 5 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2018 | + | Copyright CiviCRM LLC (c) 2004-2019 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -28,7 +28,7 @@ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2018 + * @copyright CiviCRM LLC (c) 2004-2019 */ /** @@ -44,7 +44,7 @@ class CRM_Utils_Zip { * @return mixed * FALSE if #root level items !=1; otherwise, the name of base dir */ - static public function findBaseDirName(ZipArchive $zip) { + public static function findBaseDirName(ZipArchive $zip) { $cnt = $zip->numFiles; $base = FALSE; @@ -77,9 +77,9 @@ class CRM_Utils_Zip { * @return array(string) * no trailing / */ - static public function findBaseDirs(ZipArchive $zip) { + public static function findBaseDirs(ZipArchive $zip) { $cnt = $zip->numFiles; - $basedirs = array(); + $basedirs = []; for ($i = 0; $i < $cnt; $i++) { $filename = $zip->getNameIndex($i); @@ -101,7 +101,7 @@ class CRM_Utils_Zip { * @return string|bool * Return string or FALSE */ - static public function guessBasedir(ZipArchive $zip, $expected) { + public static function guessBasedir(ZipArchive $zip, $expected) { $candidate = FALSE; $basedirs = CRM_Utils_Zip::findBaseDirs($zip); if (in_array($expected, $basedirs)) { @@ -118,7 +118,6 @@ class CRM_Utils_Zip { } } - /** * An inefficient helper for creating a ZIP file from data in memory. * This is only intended for building temp files for unit-testing. @@ -131,7 +130,7 @@ class CRM_Utils_Zip { * Array, keys are file names and values are file contents. * @return bool */ - static public function createTestZip($zipName, $dirs, $files) { + public static function createTestZip($zipName, $dirs, $files) { $zip = new ZipArchive(); $res = $zip->open($zipName, ZipArchive::CREATE); if ($res === TRUE) {