Changeset 53763 for trunk/src/wp-includes/class-wp-object-cache.php
- Timestamp:
- 07/22/2022 08:50:31 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-object-cache.php
r52708 r53763 292 292 293 293 /** 294 * Removes all cache items in a group. 295 * 296 * @since 6.1.0 297 * 298 * @param string $group Name of group to remove from cache. 299 * @return true Always returns true. 300 */ 301 public function flush_group( $group ) { 302 unset( $this->cache[ $group ] ); 303 304 return true; 305 } 306 307 /** 294 308 * Retrieves the cache contents, if it exists. 295 309 *
Note: See TracChangeset
for help on using the changeset viewer.