Arcanedev\SeoHelper\Contracts\Entities\MiscTags::setUrl PHP Method

setUrl() public method

Set the current URL.
public setUrl ( string $url ) : self
$url string
return self
    public function setUrl($url);

Usage Example

Example #1
0
 /**
  * Set the current URL.
  *
  * @param  string  $url
  *
  * @return \Arcanedev\SeoHelper\SeoMeta
  */
 public function setUrl($url)
 {
     $this->currentUrl = $url;
     $this->misc->setUrl($url);
     return $this;
 }