intelephense
1.14.41.16.1
lib/stub/wincache/wincache.phplib/stub/wincache/wincache.php+3
Index: package/lib/stub/wincache/wincache.php
===================================================================
--- package/lib/stub/wincache/wincache.php
+++ package/lib/stub/wincache/wincache.php
@@ -278,8 +278,9 @@
* to nearest integer. The variable associated with the key should be of type long,
* otherwise the function fails and returns FALSE.</p>
* @param bool|null &$success [optional]
* <p>Will be set to TRUE on success and FALSE on failure.</p>
+ * @param-out bool $success
* @return int|false Returns the decremented value on success and FALSE on failure.
*/
function wincache_ucache_dec($key, $dec_by = 1, &$success) {}
@@ -313,8 +314,9 @@
* key is case sensitive. key can be an array of keys. In this case the return
* value will be an array of values of each element in the key array.</p>
* @param bool|null &$success [optional]
* <p>Will be set to TRUE on success and FALSE on failure.</p>
+ * @param-out bool $success
* @return mixed <p>If key is a string, the function returns the value of the variable
* stored with that key. The success is set to TRUE on success and to FALSE on failure.</p>
* <p>The key is an array, the parameter success is always set to TRUE. The returned array
* (name => value pairs) will contain only those name => value pairs for which the get
@@ -334,8 +336,9 @@
* to nearest integer. The variable associated with the key should be of type long,
* otherwise the function fails and returns FALSE.</p>
* @param bool|null &$success [optional]
* <p>Will be set to TRUE on success and FALSE on failure.</p>
+ * @param-out bool $success
* @return int|false Returns the incremented value on success and FALSE on failure.
*/
function wincache_ucache_inc($key, $inc_by = 1, &$success) {}