Changeset 54448 for trunk/tests/phpunit/includes/object-cache.php
- Timestamp:
- 10/10/2022 06:20:28 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/object-cache.php
r54423 r54448 314 314 315 315 /** 316 * Whether the object cache implementation supports flushing individual cache groups.316 * Determines whether the object cache implementation supports a particular feature. 317 317 * 318 318 * @since 6.1.0 319 319 * 320 * @return bool True if group flushing is supported, false otherwise. 321 */ 322 function wp_cache_supports_group_flush() { 320 * @param string $feature Name of the feature to check for. Possible values include: 321 * 'add_multiple', 'set_multiple', 'get_multiple', 'delete_multiple', 322 * 'flush_runtime', 'flush_group'. 323 * @return bool True if the feature is supported, false otherwise. 324 */ 325 function wp_cache_supports( $feature ) { 323 326 return false; 324 327 }
Note: See TracChangeset
for help on using the changeset viewer.