本文整理汇总了PHP中oxUtilsObject::resetClassInstances方法的典型用法代码示例。如果您正苦于以下问题:PHP oxUtilsObject::resetClassInstances方法的具体用法?PHP oxUtilsObject::resetClassInstances怎么用?PHP oxUtilsObject::resetClassInstances使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类oxUtilsObject
的用法示例。
在下文中一共展示了oxUtilsObject::resetClassInstances方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tearDown
/**
* Executed after test is down
*
*/
protected function tearDown()
{
//TS2012-06-06
//deprecated method call
//overrideGetShopBasePath(null);
oxTestsStaticCleaner::clean('oxSeoEncoder', '_instance');
oxTestsStaticCleaner::clean('oxSeoEncoderArticle', '_instance');
oxTestsStaticCleaner::clean('oxSeoEncoderCategory', '_instance');
oxTestsStaticCleaner::clean('oxVatSelector', '_instance');
oxTestsStaticCleaner::clean('oxDiscountList', '_instance');
oxTestsStaticCleaner::clean('oxUtilsObject', '_aInstanceCache');
oxTestsStaticCleaner::clean('oxArticle', '_aLoadedParents');
modInstances::cleanup();
oxTestModules::cleanUp();
modOxid::globalCleanup();
modDB::getInstance()->cleanup();
$this->getSession()->cleanup();
$this->getConfig()->cleanup();
$_SERVER = $this->_aBackup['_SERVER'];
$_POST = $this->_aBackup['_POST'];
$_GET = $this->_aBackup['_GET'];
$_SESSION = $this->_aBackup['_SESSION'];
$_COOKIE = $this->_aBackup['_COOKIE'];
$this->_resetRegistry();
oxUtilsObject::resetClassInstances();
oxUtilsObject::resetModuleVars();
parent::tearDown();
}
示例2: tearDown
/**
* Executed after test is down
*
*/
protected function tearDown()
{
$this->cleanUpDatabase();
modDb::getInstance()->modAttach(modDb::getInstance()->getRealInstance());
oxTestsStaticCleaner::clean('oxUtilsObject', '_aInstanceCache');
oxTestsStaticCleaner::clean('oxArticle', '_aLoadedParents');
modInstances::cleanup();
oxTestModules::cleanUp();
modOxid::globalCleanup();
modDB::getInstance()->cleanup();
$this->getSession()->cleanup();
$this->getConfig()->cleanup();
$_SERVER = $this->_aBackup['_SERVER'];
$_POST = $this->_aBackup['_POST'];
$_GET = $this->_aBackup['_GET'];
$_SESSION = $this->_aBackup['_SESSION'];
$_COOKIE = $this->_aBackup['_COOKIE'];
$this->_resetRegistry();
oxUtilsObject::resetClassInstances();
oxUtilsObject::resetModuleVars();
parent::tearDown();
}