feat: expose CacheEntry::getData in ocp

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2024-06-18 15:48:21 +02:00
parent bb5ac2688c
commit 4e8d89c460

View file

@ -161,4 +161,12 @@ interface ICacheEntry extends ArrayAccess {
* @since 25.0.0
*/
public function getUnencryptedSize(): int;
/**
* Get the cache data as array
*
* @return array
* @since 30.0.0
*/
public function getData(): array;
}