fix cache selection method

This commit is contained in:
yggverse 2024-07-22 18:32:49 +03:00
parent 03ac7647b7
commit 5b020095a3
2 changed files with 14 additions and 30 deletions

View file

@ -239,17 +239,9 @@ abstract class Connection implements \Yggverse\Yoda\Interface\Model\Connection
string $request
): ?object
{
if ($cache = $this->_database->findCache($request))
{
if (empty($cache[0]))
{
throw new \Exception;
}
return $cache[0];
}
return null;
return $this->_database->getCache(
$request
);
}
public function cache(