set() public method

Set description content.
public set ( string $content ) : self
$content string
return self
Example #1
0
 /**
  * Set the description content.
  *
  * @param  string  $content
  *
  * @return \Arcanedev\SeoHelper\SeoMeta
  */
 public function setDescription($content)
 {
     $this->description->set($content);
     return $this;
 }