wp-includes/SimplePie/src/Cache/Redis.php:96Save data to the cache
$dataSimplePie\Cache\array<mixed>|SimplePie\SimplePiebool public function save($data) { if ($data instanceof \SimplePie\SimplePie) { $data = $data->data; } $response = $this->cache->set($this->name, serialize($data)); if ($this->options['expire']) { $this->cache->expire($this->name, $this->options['expire']); } return $response; }One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
$data retyped from array|SimplePie\SimplePie to SimplePie\Cache\array<mixed>|SimplePie\SimplePie.verified against sourcesrc/wp-includes/SimplePie/src/Cache/Redis.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.