intelephense
1.14.41.16.1
lib/stub/apcu/apcu.phplib/stub/apcu/apcu.php+6
Index: package/lib/stub/apcu/apcu.php
===================================================================
--- package/lib/stub/apcu/apcu.php
+++ package/lib/stub/apcu/apcu.php
@@ -65,8 +65,9 @@
* @link https://php.net/manual/en/function.apc-fetch.php
* @param string|string[] $key The key used to store the value (with apc_store()).
* If an array is passed then each element is fetched and returned.
* @param bool|null &$success Set to TRUE in success and FALSE in failure.
+ * @param-out bool $success
* @return mixed|false The stored variable or array of variables on success; FALSE on failure.
*/
function apc_fetch($key, &$success = null) {}
@@ -163,8 +164,9 @@
* @link https://php.net/manual/en/function.apc-inc.php
* @param string $key The key of the value being increased.
* @param int $step The step, or value to increase.
* @param bool|null &$success Optionally pass the success or fail boolean value to this referenced variable.
+ * @param-out bool $success
* @return int|false Returns the current value of key's value on success, or FALSE on failure.
*/
function apc_inc($key, $step = 1, &$success = null) {}
@@ -173,8 +175,9 @@
* @link https://php.net/manual/en/function.apc-dec.php
* @param string $key The key of the value being decreased.
* @param int $step The step, or value to decrease.
* @param bool|null &$success Optionally pass the success or fail boolean value to this referenced variable.
+ * @param-out bool $success
* @return int|false Returns the current value of key's value on success, or FALSE on failure.
*/
function apc_dec($key, $step = 1, &$success = null) {}
@@ -438,8 +441,9 @@
* @link https://php.net/manual/en/function.apcu-fetch.php
* @param string|string[] $key The key used to store the value (with apcu_store()).
* If an array is passed then each element is fetched and returned.
* @param bool|null &$success Set to TRUE in success and FALSE in failure.
+ * @param-out bool $success
* @return mixed|false The stored variable or array of variables on success; FALSE on failure.
*/
function apcu_fetch($key, &$success = null) {}
@@ -488,8 +492,9 @@
* the stored variable will be expunged from the cache (on the next request). If no ttl is supplied
* (or if the ttl is 0), the value will persist until it is removed from the cache manually,
* or otherwise fails to exist in the cache (clear, restart, etc.).
* @param bool|null &$success Optionally pass the success or fail boolean value to this referenced variable.
+ * @param-out bool $success
* @return int|false Returns the current value of key's value on success, or FALSE on failure.
*/
function apcu_inc($key, $step = 1, &$success = null, $ttl = 0) {}
@@ -502,8 +507,9 @@
* the stored variable will be expunged from the cache (on the next request). If no ttl is supplied
* (or if the ttl is 0), the value will persist until it is removed from the cache manually,
* or otherwise fails to exist in the cache (clear, restart, etc.).
* @param bool|null &$success Optionally pass the success or fail boolean value to this referenced variable.
+ * @param-out bool $success
* @return int|false Returns the current value of key's value on success, or FALSE on failure.
*/
function apcu_dec($key, $step = 1, &$success = null, $ttl = 0) {}