Horde_Cache_Sql_Base::tearDown PHP 메소드

tearDown() 공개 메소드

public tearDown ( )
    public function tearDown()
    {
        parent::tearDown();
        $this->db->delete('DELETE FROM horde_cache');
        if ($this->migrator) {
            $this->migrator->down();
        }
        if ($this->db) {
            $this->db->disconnect();
        }
        $this->db = $this->migrator = null;
    }
Horde_Cache_Sql_Base