Amp\Mysql\Stmt::close PHP Method

close() public method

public close ( )
    public function close()
    {
        if (isset($this->conn) && $this->conn instanceof Connection) {
            // might be already dtored
            $this->conn->closeStmt($this->stmtId);
        }
    }