From ecb1e312a0b4e90fa4d2e7bd89dbddd031f82de6 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Sun, 29 Sep 2019 18:22:36 +0200 Subject: [PATCH] Fix default value --- ext/zip/php_zip.stub.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/zip/php_zip.stub.php b/ext/zip/php_zip.stub.php index 988aeef1ff2..451372110a2 100644 --- a/ext/zip/php_zip.stub.php +++ b/ext/zip/php_zip.stub.php @@ -79,7 +79,7 @@ class ZipArchive public function addFromString(string $name, string $content) {} /** @return bool */ - public function addFile(string $filepath, string $entryname = UNBEKANNT, int $start = 0, int $length = 0) {} + public function addFile(string $filepath, string $entryname = UNKNOWN, int $start = 0, int $length = 0) {} /** @return array|false */ public function addGlob(string $pattern, int $flags = 0, $options = UNKNOWN) {}