public function EasyRdf_Container::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/easyrdf/easyrdf/lib/EasyRdf/Container.php \EasyRdf_Container::__construct()
Create a new container - do not use this directly
@ignore
Overrides EasyRdf_Resource::__construct
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Container.php, line 57
Class
- EasyRdf_Container
- Sub-class of EasyRdf_Resource that represents an RDF container (rdf:Alt, rdf:Bag and rdf:Seq)
Code
public function __construct($uri, $graph) {
$this->position = 1;
parent::__construct($uri, $graph);
}