diff --git a/src/wp-includes/cache.php b/src/wp-includes/cache.php
index e7fe7b87a8..a3b5f79153 100644
|
a
|
b
|
function wp_cache_set_multiple( array $data, $group = '', $expire = 0 ) { |
| 144 | 144 | * @param string $group Optional. Where the cache contents are grouped. Default empty. |
| 145 | 145 | * @param bool $force Optional. Whether to force an update of the local cache |
| 146 | 146 | * from the persistent cache. Default false. |
| 147 | | * @param bool $found Optional. Whether the key was found in the cache (passed by reference). |
| | 147 | * @param bool|null $found Optional. Whether the key was found in the cache (passed by reference). |
| 148 | 148 | * Disambiguates a return of false, a storable value. Default null. |
| 149 | 149 | * @return mixed|false The cache contents on success, false on failure to retrieve contents. |
| 150 | 150 | */ |