intelephense
1.14.41.16.1
lib/stub/pq/pq.phplib/stub/pq/pq.php+3
Index: package/lib/stub/pq/pq.php
===================================================================
--- package/lib/stub/pq/pq.php
+++ package/lib/stub/pq/pq.php
@@ -91,8 +91,9 @@
/**
* Receive data from the server during pq\Result::COPY_OUT state.
*
* @param string &$data Data read from the server.
+ * @param-out string $data
* @throws \pq\Exception\InvalidArgumentException
* @throws \pq\Exception\BadMethodCallException
* @throws \pq\Exception\RuntimeException
* @return bool success.
@@ -1176,8 +1177,9 @@
* Read a string of data from the current position of the *large object*.
*
* @param int $length The amount of bytes to read from the *large object*.
* @param int &$read The amount of bytes actually read from the *large object*.
+ * @param-out int $read
* @throws \pq\Exception\InvalidArgumentException
* @throws \pq\Exception\BadMethodCallException
* @throws \pq\Exception\RuntimeException
* @return string the data read.
@@ -1583,8 +1585,9 @@
* Bind a variable to an input parameter.
*
* @param int $param_no The parameter index to bind to.
* @param mixed &$param_ref The variable to bind.
+ * @param-out mixed $param_ref
* @throws \pq\Exception\InvalidArgumentException
* @throws \pq\Exception\BadMethodCallException
*/
public function bind(int $param_no, &$param_ref) {}