eZ\Publish\Core\Repository\URLWildcardService::cleanUrl PHP Method

cleanUrl() protected method

Removes leading and trailing slashes and spaces.
protected cleanUrl ( string $url ) : string
$url string
return string
    protected function cleanUrl($url)
    {
        return '/' . trim($url, '/ ');
    }