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;
    }