updateTimestamp() public method

Update the cache timestamp to the current time.
public updateTimestamp ( )
Beispiel #1
0
 protected function _testValidateAfterUpdateTimestamp()
 {
     $cache = new Horde_ActiveSync_SyncCache(self::$state, 'dev123', 'mike', self::$logger->getLogger());
     $this->assertEquals(true, $cache->validateCache());
     $cache->updateTimestamp();
     $this->assertEquals(true, $cache->validateCache());
 }