mirror of
https://github.com/Ne-Lexa/php-zip.git
synced 2025-07-12 19:56:19 +02:00
fix test
This commit is contained in:
@ -516,7 +516,7 @@ class ZipFile implements ZipFileInterface
|
||||
$zipData->copyDataToStream($handle);
|
||||
} catch (ZipException $e) {
|
||||
if (is_file($file)) {
|
||||
unlink($file);
|
||||
@unlink($file);
|
||||
}
|
||||
|
||||
throw $e;
|
||||
@ -1633,7 +1633,7 @@ class ZipFile implements ZipFileInterface
|
||||
|
||||
if (!@rename($tempFilename, $filename)) {
|
||||
if (is_file($tempFilename)) {
|
||||
unlink($tempFilename);
|
||||
@unlink($tempFilename);
|
||||
}
|
||||
|
||||
throw new ZipException(sprintf('Cannot move %s to %s', $tempFilename, $filename));
|
||||
|
Reference in New Issue
Block a user