Files
LaLiga-BackEnd/vendor/doctrine/orm/src/Cache/QueryCacheValidator.php
T
2024-05-18 02:28:01 +02:00

19 lines
300 B
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);
}