mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
18 lines
368 B
PHP
18 lines
368 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Core;
|
||
|
|
||
|
/**
|
||
|
* Represents a class with a local cache which normally invalidates itself between requests.
|
||
|
*
|
||
|
* Designed so that tests can automatically flush these objects between runs in lieu
|
||
|
* of a real change.
|
||
|
*/
|
||
|
interface Resettable
|
||
|
{
|
||
|
/**
|
||
|
* Reset the local cache of this object
|
||
|
*/
|
||
|
public static function reset();
|
||
|
}
|