Arcanedev\SeoHelper\Entities\Webmasters::add PHP Method

add() public method

Add a webmaster to collection.
public add ( string $webmaster, string $content ) : Webmasters
$webmaster string
$content string
return Webmasters
    public function add($webmaster, $content)
    {
        if (!is_null($name = $this->getWebmasterName($webmaster))) {
            $this->metas->add($name, $content);
        }
        return $this;
    }