Phalcon\Logger\Adapter\Database::close PHP 메소드

close() 공개 메소드

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