diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-04-12 11:18:04 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-04-12 11:18:04 +0200 |
commit | 95e0723d0cd8eb03975aff5b8c37d75b6d2604b0 (patch) | |
tree | 66a3e8a62eadd0f8df68ef4e9d2849da30a3f59e /build | |
parent | 139da41bd4d1a796f92a3f1749768b4766dad4e8 (diff) | |
download | nextcloud-server-95e0723d0cd8eb03975aff5b8c37d75b6d2604b0.tar.gz nextcloud-server-95e0723d0cd8eb03975aff5b8c37d75b6d2604b0.zip |
Fix ZipArchive::addEmptyDir stub
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/stubs/zip.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/stubs/zip.php b/build/stubs/zip.php index b0dc3ba3ae2..10590aeed50 100644 --- a/build/stubs/zip.php +++ b/build/stubs/zip.php @@ -732,8 +732,8 @@ class ZipArchive implements Countable * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. */ public function addEmptyDir( - $dirname, - $flags + string $dirname, + int $flags = 0 ) {} /** |