wiki.techinc.nl/includes/libs/objectcache/utils/IExpiringStore.php
Reedy 11cc2d6993 Consistently use @deprecated since rather @deprecated
Change-Id: I301786f35cd6eb9c63fb72e0b64cffa9efd7b86b
2022-03-06 02:55:54 +00:00

15 lines
351 B
PHP

<?php
use Wikimedia\LightweightObjectStore\ExpirationAwareness;
use Wikimedia\LightweightObjectStore\StorageAwareness;
/**
* Generic interface providing TTL constants for lightweight expiring object stores
*
* @ingroup Cache
* @since 1.27
* @deprecated since 1.35
*/
interface IExpiringStore extends StorageAwareness, ExpirationAwareness {
}