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

setTitle() 공개 메소드

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

Usage Example

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