コード例 #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;
     }
 }