Aerospike\LDT\LDT::destroy PHP Method

destroy() public method

Destroy the LDT at the key and bin the class was initialized to.
public destroy ( ) : integer
return integer status code of the operation
    public function destroy()
    {
        $status = $this->client->apply($this->key, $this->module, 'destroy', array($this->bin));
        $this->processStatusCode($status);
        return $status;
    }