/
home
/
obinna
/
html
/
boaz2
/
vendor
/
doctrine
/
orm
/
lib
/
Doctrine
/
ORM
/
Cache
/
Upload File
HOME
<?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); }