Example #1
0
 public function testSetLifetime()
 {
     Cache::setLifetime(1234);
     $this->assertEquals(1234, Cache::getLifetime());
     Cache::setLifetime(4321);
     $this->assertEquals(4321, Cache::getLifetime());
 }
Example #2
0
 public function __construct($cacheDisabled, $type, $directory, $lifetime = null, $limit = null)
 {
     $isEnabled = (bool) $cacheDisabled ? BaseCache::DISABLED : BaseCache::ENABLED;
     BaseCache::setEnabled($isEnabled);
     BaseCache::setType($type);
     BaseCache::setDirectory($directory);
     if (null !== $lifetime) {
         BaseCache::setLifetime($lifetime);
     }
     if (null !== $limit) {
         BaseCache::setLimit($limit);
     }
 }