Jackalope\Transport\DoctrineDBAL\Client::storeNode PHP Method

storeNode() protected method

Make sure we have a uuid and a primaryType, then sync data into the database
protected storeNode ( string $path, Property[] $properties ) : boolean
$path string the path to store the node at
$properties Jackalope\Property[] the properties of this node
return boolean true on success
    protected function storeNode($path, $properties)
    {
        $nodeIdentifier = $this->getIdentifier($path, $properties);
        $type = isset($properties['jcr:primaryType']) ? $properties['jcr:primaryType']->getValue() : "nt:unstructured";
        $this->syncNode($nodeIdentifier, $path, $type, true, $properties);
        return true;
    }