intelephense

1.14.41.16.1
lib/stub/zip/zip.php
lib/stub/zip/zip.php
+4
Index: package/lib/stub/zip/zip.php
===================================================================
--- package/lib/stub/zip/zip.php
+++ package/lib/stub/zip/zip.php
@@ -1310,9 +1310,11 @@
      * Retrieve the external attributes of an entry defined by its name
      * @link https://www.php.net/manual/en/ziparchive.getexternalattributesname.php
      * @param string $name Name of the entry
      * @param int &$opsys On success, receive the operating system code defined by one of the ZipArchive::OPSYS_ constants.
+     * @param-out int $opsys
      * @param int &$attr On success, receive the external attributes. Value depends on operating system.
+     * @param-out int $attr
      * @param int $flags [optional] If flags is set to ZipArchive::FL_UNCHANGED, the original unchanged attributes are returned.
      * @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
      */
     #[TentativeType]
@@ -1344,9 +1346,11 @@
      * Retrieve the external attributes of an entry defined by its index
      * @link https://www.php.net/manual/en/ziparchive.getexternalattributesindex.php
      * @param int $index Index of the entry.
      * @param int &$opsys On success, receive the operating system code defined by one of the ZipArchive::OPSYS_ constants.
+     * @param-out int $opsys
      * @param int &$attr On success, receive the external attributes. Value depends on operating system.
+     * @param-out int $attr
      * @param int $flags [optional] If flags is set to ZipArchive::FL_UNCHANGED, the original unchanged attributes are returned.
      * @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
      */
     #[TentativeType]