Arcanedev\SeoHelper\Bases\MetaCollection::addMeta PHP Метод

addMeta() защищенный Метод

Make a meta and add it to collection.
protected addMeta ( string $name, string $content ) : MetaCollection
$name string
$content string
Результат MetaCollection
    protected function addMeta($name, $content)
    {
        $meta = Meta::make($name, $content, $this->nameProperty, $this->prefix);
        $this->put($meta->key(), $meta);
        return $this;
    }