[Bridge] Simplify cache loading
This commit is contained in:
parent
85a025a82b
commit
cd9435b936
1 changed files with 4 additions and 7 deletions
|
@ -251,13 +251,10 @@ abstract class BridgeAbstract implements BridgeInterface {
|
||||||
if(!is_null($this->cache)){
|
if(!is_null($this->cache)){
|
||||||
$this->cache->prepare($inputs);
|
$this->cache->prepare($inputs);
|
||||||
$time = $this->cache->getTime();
|
$time = $this->cache->getTime();
|
||||||
} else {
|
if($time !== false && (time() - $this->getCacheDuration() < $time)){
|
||||||
$time = false;
|
$this->items = $this->cache->loadData();
|
||||||
}
|
return;
|
||||||
|
}
|
||||||
if($time !== false && (time() - $this->getCacheDuration() < $time)){
|
|
||||||
$this->items = $this->cache->loadData();
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(empty($this->parameters)){
|
if(empty($this->parameters)){
|
||||||
|
|
Loading…
Reference in a new issue