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

setTitle() public method

Set title property.
public setTitle ( string $title ) : self
$title string
return self
    public function setTitle($title);

Usage Example

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