| Current Path : /opt/nginxhttpd_/vendor/doctrine/orm/src/Cache/ |
| Current File : //opt/nginxhttpd_/vendor/doctrine/orm/src/Cache/QueryCacheValidator.php |
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Cache;
/**
* Cache query validator interface.
*/
interface QueryCacheValidator
{
/**
* Checks if the query entry is valid
*
* @return bool
*/
public function isValid(QueryCacheKey $key, QueryCacheEntry $entry);
}