src/Client/Cache/CacheInterface.php
<?php
/**
* vipnytt/RobotsTxtParser
*
* @link https://github.com/VIPnytt/RobotsTxtParser
* @license https://github.com/VIPnytt/RobotsTxtParser/blob/master/LICENSE The MIT License (MIT)
*/
namespace vipnytt\RobotsTxtParser\Client\Cache;
/**
* Interface CacheInterface
*
* @package vipnytt\RobotsTxtParser\Client\Cache
*/
interface CacheInterface
{
/**
* Time in seconds
*/
const OUT_OF_SYNC_TIME_LIMIT = 60;
}