Changeset 55742
- Timestamp:
- 05/10/2023 02:00:01 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/object-cache.php
r55741 r55742 314 314 315 315 /** 316 * Removes all cache items from the in-memory runtime cache. 317 * 318 * @return bool True on success, false on failure. 319 */ 320 function wp_cache_flush_runtime() { 321 global $wp_object_cache; 322 return $wp_object_cache->flush_runtime(); 323 } 324 325 /** 316 326 * Determines whether the object cache implementation supports a particular feature. 317 327 * … … 331 341 return false; 332 342 } 333 }334 335 /**336 * Removes all cache items from the in-memory runtime cache.337 *338 * @return bool True on success, false on failure.339 */340 function wp_cache_flush_runtime() {341 global $wp_object_cache;342 return $wp_object_cache->flush_runtime();343 343 } 344 344
Note: See TracChangeset
for help on using the changeset viewer.