mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
fix cache selection method
This commit is contained in:
parent
03ac7647b7
commit
5b020095a3
2 changed files with 14 additions and 30 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue