Cartalyst\Sentinel\Cookies\NativeCookie::minutesToLifetime PHP Method

minutesToLifetime() protected method

Takes a minutes parameter (relative to now) and converts it to a lifetime (unix timestamp).
protected minutesToLifetime ( integer $minutes ) : integer
$minutes integer
return integer
    protected function minutesToLifetime($minutes)
    {
        return time() + $minutes * 60;
    }