Frontend\Core\Engine\Url::getDomain PHP Method

getDomain() public method

Get the domain
public getDomain ( ) : string
return string The current domain (without www.)
    public function getDomain()
    {
        // replace
        return str_replace('www.', '', $this->request->getHttpHost());
    }