intelephense

1.14.41.16.1
lib/stub/standard/standard_4.php
lib/stub/standard/standard_4.php
+8
Index: package/lib/stub/standard/standard_4.php
===================================================================
--- package/lib/stub/standard/standard_4.php
+++ package/lib/stub/standard/standard_4.php
@@ -724,11 +724,13 @@
  * headers_sent will put the PHP source file name
  * and line number where output started in the file
  * and line variables.
  * </p>
+ * @param-out string $filename
  * @param int &$line [optional] <p>
  * The line number where the output started.
  * </p>
+ * @param-out int $line
  * @return bool headers_sent will return false if no HTTP headers
  * have already been sent or true otherwise.
  */
 function headers_sent(&$filename = null, &$line = null): bool {}
@@ -967,9 +969,11 @@
  * {@see getmxrr}
  * @link https://php.net/manual/en/function.dns-get-mx.php
  * @param string $hostname
  * @param array &$hosts
+ * @param-out array $hosts
  * @param array &$weights [optional]
+ * @param-out array $weights
  * @return bool
  */
 function dns_get_mx(string $hostname, &$hosts, &$weights): bool {}
 
@@ -982,12 +986,14 @@
  * @param array &$hosts <p>
  * A list of the MX records found is placed into the array
  * mxhosts.
  * </p>
+ * @param-out array $hosts
  * @param array &$weights [optional] <p>
  * If the weight array is given, it will be filled
  * with the weight information gathered.
  * </p>
+ * @param-out array $weights
  * @return bool true if any records are found; returns false if no records
  * were found or if an error occurred.
  */
 function getmxrr(string $hostname, &$hosts, &$weights): bool {}
@@ -1030,12 +1036,14 @@
  * @param array &$authoritative_name_servers [optional] <p>
  * Passed by reference and, if given, will be populated with Resource
  * Records for the Authoritative Name Servers.
  * </p>
+ * @param-out array $authoritative_name_servers
  * @param array &$additional_records [optional] <p>
  * Passed by reference and, if given, will be populated with any
  * Additional Records.
  * </p>
+ * @param-out array $additional_records
  * @param bool $raw [optional] <p>
  * In case of raw mode, we query only the requested type
  * instead of looping type by type before going with the additional info stuff.
  * </p>