protected function EasyRdf_Parser_Turtle::createBNode in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/Turtle.php \EasyRdf_Parser_Turtle::createBNode()
@ignore
3 calls to EasyRdf_Parser_Turtle::createBNode()
- EasyRdf_Parser_Turtle::parseCollection in vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php - Parses a collection [16], e.g: ( item1 item2 item3 ) @ignore
- EasyRdf_Parser_Turtle::parseImplicitBlank in vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php - Parses a blankNodePropertyList [15]
- EasyRdf_Parser_Turtle::parseTriples in vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php - Parse triples [6] @ignore
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php, line 1208
Class
- EasyRdf_Parser_Turtle
- Class to parse Turtle with no external dependancies.
Code
protected function createBNode() {
return array(
'type' => 'bnode',
'value' => $this->graph
->newBNodeId(),
);
}