Prose\FromBrowser::getUrl PHP Метод

getUrl() публичный Метод

------------------------------------------------------------------
public getUrl ( )
    public function getUrl()
    {
        // shorthand
        $browser = $this->device;
        // what are we doing?
        $log = usingLog()->startAction("retrieve the current URL from the browser");
        // get the URL
        $url = $browser->url();
        // all done
        $log->endAction($url);
        return $url;
    }