Arcanedev\SeoHelper\Contracts\Entities\MetaCollection::remove PHP Method

remove() public method

Remove a meta from the meta collection by key.
public remove ( array | string $names ) : self
$names array | string
return self
    public function remove($names);

Usage Example

Example #1
0
 /**
  * Remove a meta from the meta collection by key.
  *
  * @param  array|string  $names
  *
  * @return \Arcanedev\SeoHelper\Entities\MiscTags
  */
 public function remove($names)
 {
     $this->metas->remove($names);
     return $this;
 }