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

moveNodeImmediately() public method

{@inheritDoc}
public moveNodeImmediately ( $srcAbsPath, $dstAbsPath )
    public function moveNodeImmediately($srcAbsPath, $dstAbsPath)
    {
        $request = $this->getRequest(Request::MOVE, $srcAbsPath);
        $request->setDepth(Request::INFINITY);
        $request->addHeader('Destination: ' . $this->addWorkspacePathToUri($dstAbsPath));
        $request->execute();
    }