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

moveNodes() public method

{@inheritDoc}
public moveNodes ( array $operations )
$operations array
    public function moveNodes(array $operations)
    {
        foreach ($operations as $operation) {
            PathHelper::assertValidAbsolutePath($operation->srcPath);
            PathHelper::assertValidAbsolutePath($operation->dstPath);
            $this->setJsopBody(">" . $operation->srcPath . " : " . $operation->dstPath);
        }
    }