コード例 #1
0
ファイル: WebTestCase.php プロジェクト: NicolasMugnier/thelia
 /**
  * Shuts the kernel down if it was used in the test.
  */
 protected function tearDown()
 {
     ConfigQuery::write('one_domain_foreach_lang', $this->isMultiDomainActivated);
     if (null !== static::$kernel) {
         static::$kernel->shutdown();
     }
 }
コード例 #2
0
ファイル: WebTestCase.php プロジェクト: NandoKstroNet/thelia
 /**
  * Shuts the kernel down if it was used in the test.
  */
 protected function tearDown()
 {
     if (null !== static::$kernel) {
         static::$kernel->shutdown();
     }
 }