Arcanedev\SeoHelper\Contracts\Entities\MiscTags::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  string|array  $names
  *
  * @return \Arcanedev\SeoHelper\SeoMeta
  */
 public function removeMeta($names)
 {
     $this->misc->remove($names);
     return $this;
 }