Metaphore\Ttl::getGraceTtl PHP Method

getGraceTtl() public method

Gets grace period
public getGraceTtl ( ) : integer
return integer
    public function getGraceTtl()
    {
        if (!isset($this->graceTtl)) {
            $this->graceTtl = self::DEFAULT_GRACE_TTL;
        }
        return $this->graceTtl;
    }