Phalcon\Logger\Adapter\Database::close PHP Method

close() public method

public close ( ) : boolean
return boolean
    public function close()
    {
        if ($this->db->isUnderTransaction()) {
            $this->db->commit();
        }
        $this->db->close();
        return true;
    }