You are here

public function EasyRdf_GraphStore::deleteDefault in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/easyrdf/easyrdf/lib/EasyRdf/GraphStore.php \EasyRdf_GraphStore::deleteDefault()

Delete default graph content from the graph store

Return value

EasyRdf_Http_Response

Throws

EasyRdf_Exception

File

vendor/easyrdf/easyrdf/lib/EasyRdf/GraphStore.php, line 278

Class

EasyRdf_GraphStore
A class for fetching, saving and deleting graphs to a Graph Store. Implementation of the SPARQL 1.1 Graph Store HTTP Protocol.

Code

public function deleteDefault() {
  return $this
    ->delete(self::DEFAULT_GRAPH);
}