Пример #1
0
 public function tearDown()
 {
     if (function_exists('zend_disk_cache_clear')) {
         zend_disk_cache_clear();
     }
     parent::tearDown();
 }
Пример #2
0
 public function tearDown()
 {
     if (function_exists('wincache_ucache_clear')) {
         wincache_ucache_clear();
     }
     parent::tearDown();
 }
Пример #3
0
 public function tearDown()
 {
     if ($this->_storage) {
         $this->_storage->flush();
     }
     parent::tearDown();
 }
Пример #4
0
 public function tearDown()
 {
     if (!empty($this->_storage)) {
         $this->_storage->clear();
     }
     parent::tearDown();
 }
Пример #5
0
 public function tearDown()
 {
     $this->_storage = null;
     if (file_exists($this->temporaryDbaFile)) {
         unlink($this->temporaryDbaFile);
     }
     parent::tearDown();
 }
Пример #6
0
 public function tearDown()
 {
     if (function_exists('apc_clear_cache')) {
         apc_clear_cache('user');
     }
     // reset ini configurations
     ini_set('apc.use_request_time', $this->iniUseRequestTime);
     parent::tearDown();
 }
Пример #7
0
 public function tearDown()
 {
     $this->_removeRecursive($this->_tmpCacheDir);
     if ($this->_umask != umask()) {
         umask($this->_umask);
         $this->fail("Umask wasn't reset");
     }
     parent::tearDown();
 }
Пример #8
0
 public function tearDown()
 {
     $this->_removeRecursive($this->_tmpCacheDir);
     parent::tearDown();
 }