Files
runff/lib/SimpleSAML/Utils/ClearableState.php
2019-04-29 16:09:00 +02:00

18 lines
360 B
PHP
Executable File

<?php
namespace SimpleSAML\Utils;
/**
* Indicates an implementation caches state internally and may be cleared.
*
* Primarily designed to allow SSP state to be cleared between unit tests.
* @package SimpleSAML\Utils
*/
interface ClearableState
{
/**
* Clear any cached internal state.
*/
public static function clearInternalState();
}