Kevinrob\GuzzleCache\CacheEntry::getStaleAge PHP Méthode

getStaleAge() public méthode

public getStaleAge ( ) : integer
Résultat 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;
    }