15 lines
351 B
PHP
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 {
|
|
|
|
}
|