add() public method

Add a webmaster to collection.
public add ( string $webmaster, string $content ) : self
$webmaster string
$content string
return self
Example #1
0
 /**
  * Add a webmaster tool site verifier.
  *
  * @param  string  $webmaster
  * @param  string  $content
  *
  * @return \Arcanedev\SeoHelper\SeoMeta
  */
 public function addWebmaster($webmaster, $content)
 {
     $this->webmasters->add($webmaster, $content);
     return $this;
 }