set() public method

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