Arcanedev\SeoHelper\Bases\MetaCollection::forget PHP Method

forget() public method

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