Add a triple to the current graph, and keep count of the number of triples @ignore
Overrides EasyRdf_Parser::addTriple
protected function addTriple($resource, $property, $value) {
if ($this->debug) {
print "Adding triple: {$resource} -> {$property} -> " . $value['type'] . ':' . $value['value'] . "\n";
}
$count = $this->graph
->add($resource, $property, $value);
$this->tripleCount += $count;
return $count;
}