Changeset 53767 for trunk/tests/phpunit/includes/object-cache.php
- Timestamp:
- 07/23/2022 02:56:51 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/object-cache.php
r53763 r53767 283 283 global $wp_object_cache; 284 284 return $wp_object_cache->flush( $delay ); 285 } 286 287 /** 288 * Whether the object cache implementation supports flushing individual cache groups. 289 * 290 * @since 6.1.0 291 * 292 * @return bool True if group flushing is supported, false otherwise. 293 */ 294 function wp_cache_supports_group_flush() { 295 return false; 285 296 } 286 297 … … 744 755 global $wp_object_cache; 745 756 $wp_object_cache = new WP_Object_Cache(); 746 }747 748 /**749 * Whether the object cache implementation supports flushing individual cache groups.750 *751 * @since 6.1.0752 *753 * @return bool True if group flushing is supported, false otherwise.754 */755 function wp_cache_supports_group_flush() {756 return false;757 757 } 758 758
Note: See TracChangeset
for help on using the changeset viewer.