Arcanedev\SeoHelper\Contracts\Entities\OpenGraph::setSiteName PHP Method

setSiteName() public method

Set site name property.
public setSiteName ( string $siteName ) : self
$siteName string
return self
    public function setSiteName($siteName);

Usage Example

Example #1
0
 /**
  * Set site name property.
  *
  * @param  string  $siteName
  *
  * @return \Arcanedev\SeoHelper\SeoOpenGraph
  */
 public function setSiteName($siteName)
 {
     $this->openGraph->setSiteName($siteName);
     return $this;
 }