wp-includes/ai-client/adapters/class-wp-ai-client-cache.php:63Fetches a value from the cache.
$keystring$default_valuemixedoptionalnullmixed public function get( $key, $default_value = null ) { $found = false; $value = wp_cache_get( $key, $this->get_cache_group(), false, $found ); if ( ! $found ) { return $default_value; } return $value; }Introduced in 7.0.0. Unchanged from 7.0.4 through 7.1.0.
Signature, return type and hooks compared across 2 parsed releases.
src/wp-includes/ai-client/adapters/class-wp-ai-client-cache.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.