Pop\Cache\Cache::setLifetime PHP Method

setLifetime() public method

Method to set the cache lifetime.
public setLifetime ( integer $time ) : Cache
$time integer
return Cache
    public function setLifetime($time = 0)
    {
        $this->lifetime = (int) $time;
        return $this;
    }