예제 #1
0
파일: Base.php 프로젝트: raz0rsdge/horde
 public static function tearDownAfterClass()
 {
     self::$prefs = null;
     if (self::$migrator) {
         self::$migrator->down();
         self::$migrator = null;
     }
     if (self::$db) {
         self::$db->disconnect();
         self::$db = null;
     }
 }
예제 #2
0
파일: Base.php 프로젝트: horde/horde
 public static function tearDownAfterClass()
 {
     self::$prefs = null;
     if (self::$db) {
         self::$db->delete('DELETE FROM horde_prefs');
     }
     if (self::$migrator) {
         self::$migrator->down();
         self::$migrator = null;
     }
     if (self::$db) {
         self::$db->disconnect();
         self::$db = null;
     }
 }