Arcanedev\SeoHelper\Contracts\Entities\OpenGraph::setTitle PHP 메소드

setTitle() 공개 메소드

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

Usage Example

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