setTitle() public method

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