Exemplo n.º 1
0
 /**
  * Update expiration time
  *
  * @return void
  */
 public function updateExpiry()
 {
     $ttl = \XLite\Core\Session::getTTL();
     $this->setExpiry(0 < $ttl ? $ttl : time() + self::MAX_TTL);
 }
Exemplo n.º 2
0
 /**
  * Update expiration time
  *
  * @return void
  */
 public function updateExpiry()
 {
     $ttl = \XLite\Core\Session::getTTL();
     $this->setExpiry(0 < $ttl ? $ttl : \XLite\Core\Converter::time() + self::getMaxTTL());
 }