/home/techb158/immovalet.com/vendor/aws/aws-sdk-php/src
Edit: /home/techb158/immovalet.com/vendor/aws/aws-sdk-php/src/Psr16CacheAdapter.php (572B)
cache = $cache;
}
public function get($key)
{
return $this->cache->get($key);
}
public function set($key, $value, $ttl = 0)
{
$this->cache->set($key, $value, $ttl);
}
public function remove($key)
{
$this->cache->delete($key);
}
}