updateTimestamp() 공개 메소드

Update the cache timestamp to the current time.
public updateTimestamp ( )
예제 #1
0
파일: Base.php 프로젝트: horde/horde
 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());
 }