Jackalope\Transport\Jackrabbit\Client::storeNodes PHP Method

storeNodes() public method

{@inheritDoc}
public storeNodes ( array $operations )
$operations array
    public function storeNodes(array $operations)
    {
        /** @var $operation \Jackalope\Transport\AddNodeOperation */
        foreach ($operations as $operation) {
            if ($operation->node->isDeleted()) {
                $properties = $operation->node->getPropertiesForStoreDeletedNode();
            } else {
                $properties = $operation->node->getProperties();
            }
            $this->createNodeJsop($operation->srcPath, $properties);
        }
    }