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

updateProperties() public method

public updateProperties ( Node $node )
$node Jackalope\Node the node to update
    public function updateProperties(Node $node)
    {
        $this->assertLoggedIn();
        // we can ignore the operations returned, there will be no additions because of property updates
        $this->getNodeProcessor()->process($node);
        $this->syncNode($node->getIdentifier(), $node->getPath(), $node->getPrimaryNodeType(), false, $node->getProperties());
        return true;
    }