Arcanedev\SeoHelper\Contracts\Entities\Keywords::addMany PHP Méthode

addMany() public méthode

Add many keywords to the content.
public addMany ( array $keywords ) : self
$keywords array
Résultat self
    public function addMany(array $keywords);

Usage Example

Exemple #1
0
 /**
  * Add many keywords.
  *
  * @param  array  $keywords
  *
  * @return \Arcanedev\SeoHelper\SeoMeta
  */
 public function addKeywords(array $keywords)
 {
     $this->keywords->addMany($keywords);
     return $this;
 }