woocommerce_after_deserializing_{$this->object_type}_from_cache
woocommerce_after_deserializing_{$this->object_type}_from_cache
Appears in: woocommerce.6.9.0, woocommerce.6.9.4, woocommerce.7.0.0, woocommerce.7.1.0, woocommerce.7.1.1, woocommerce.7.2.2, woocommerce.7.3.0, woocommerce.7.4.0, woocommerce.7.4.1, woocommerce.7.5.1
Hook Type: filter
Displaying hooks found in version: woocommerce.7.5.1apply_filters('woocommerce_after_deserializing_{$this->object_type}_from_cache') is found 1 times:
- /src/Caching/ObjectCache.php line 279
* @param array|object $object The object after being deserialized. * @param array $data The serialized object data that was retrieved from the cache engine. * @returns array|object The actual deserialized object data that will be returned by 'get'. */ return apply_filters( "woocommerce_after_deserializing_{$this->object_type}_from_cache", $object, $data, $id ); } /** * Remove an object from the cache. * * @param int|string $id The id of the object to remove.