diff options
author | George Peter Banyard <girgias@php.net> | 2021-01-08 03:47:14 +0000 |
---|---|---|
committer | George Peter Banyard <girgias@php.net> | 2021-01-08 22:26:24 +0000 |
commit | f40838eaaaa095f2e9db4d3a6088267e64956778 (patch) | |
tree | a182d8eb70cdb7920a5daeaedadda701fa4e7496 /ext/zip/php_zip.stub.php | |
parent | 8ae02c8a9588b36e93da3ba88d32956323fc30d4 (diff) | |
download | php-git-f40838eaaaa095f2e9db4d3a6088267e64956778.tar.gz |
Rename ``zip_ent`` parameter to ``zip_entry`` for consistency
All other functions use ``zip_entry``
Diffstat (limited to 'ext/zip/php_zip.stub.php')
-rw-r--r-- | ext/zip/php_zip.stub.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zip/php_zip.stub.php b/ext/zip/php_zip.stub.php index ddda62d6b0..5ae4731ae2 100644 --- a/ext/zip/php_zip.stub.php +++ b/ext/zip/php_zip.stub.php @@ -29,10 +29,10 @@ function zip_read($zip) {} function zip_entry_open($zip_dp, $zip_entry, string $mode = "rb"): bool {} /** - * @param resource $zip_ent + * @param resource $zip_entry * @deprecated */ -function zip_entry_close($zip_ent): bool {} +function zip_entry_close($zip_entry): bool {} /** * @param resource $zip_entry |