#2187 Addresses deprecation on PHP 8.1 in ZipArchi

This commit is contained in:
Gareth Ellis 2022-02-08 12:40:06 +00:00
parent aca10785cf
commit c57c292915
1 changed files with 7 additions and 0 deletions

View File

@ -133,6 +133,13 @@ class ZipArchive
if (!$this->usePclzip) { if (!$this->usePclzip) {
$zip = new \ZipArchive(); $zip = new \ZipArchive();
// PHP 8.1 compat - passing null as second arg to \ZipArchive::open() is deprecated
// passing 0 achieves the same behaviour
if ($flags === null) {
$flags = 0;
}
$result = $zip->open($this->filename, $flags); $result = $zip->open($this->filename, $flags);
// Scrutizer will report the property numFiles does not exist // Scrutizer will report the property numFiles does not exist