touch() public method

public touch ( $key, $expire )
Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function touch($key, $expire)
 {
     $result = $this->transaction->touch($key, $expire);
     $this->transaction->commit();
     return $result;
 }