protected function BackendGeneralTestCase::refreshRequestTime in Supercache 8
Same name and namespace in other branches
- 2.0.x src/Tests/Generic/Cache/BackendGeneralTestCase.php \Drupal\supercache\Tests\Generic\Cache\BackendGeneralTestCase::refreshRequestTime()
Summary of refreshRequestTime
Parameters
mixed $backend :
1 call to BackendGeneralTestCase::refreshRequestTime()
- BackendExpireTests::testExpirations in src/
Tests/ Generic/ Cache/ BackendExpireTests.php - Test the saving and restoring of a string.
File
- src/
Tests/ Generic/ Cache/ BackendGeneralTestCase.php, line 137
Class
- BackendGeneralTestCase
- Testea funciones basicas.
Namespace
Drupal\supercache\Tests\Generic\CacheCode
protected function refreshRequestTime($backend) {
if ($backend instanceof \Drupal\supercache\Cache\CacheRawBackendInterface) {
$backend
->refreshRequestTime();
}
}