Kevinrob\GuzzleCache\CacheEntry::getStaleAge PHP Method

getStaleAge() public method

public getStaleAge ( ) : integer
return integer positive value equal staled
    public function getStaleAge()
    {
        // This object is immutable
        if ($this->timestampStale === null) {
            $this->timestampStale = $this->staleAt->getTimestamp();
        }
        return time() - $this->timestampStale;
    }