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

stripServerRootFromUri() protected method

remove the server and workspace part from an uri, leaving the absolute path inside the current workspace
protected stripServerRootFromUri ( string $uri ) : string
$uri string a full uri including the server path, workspace and jcr%3aroot
return string absolute path in the current work space
    protected function stripServerRootFromUri($uri)
    {
        return substr($uri, strlen($this->workspaceUriRoot));
    }