Arcanedev\SeoHelper\Bases\MetaCollection::forget PHP 메소드

forget() 공개 메소드

Remove an item from the collection by key.
public forget ( string | array $keys ) : MetaCollection
$keys string | array
리턴 MetaCollection
    public function forget($keys)
    {
        foreach ((array) $keys as $key) {
            $this->offsetUnset($key);
        }
        return $this;
    }