remove() public method

Remove a meta from the meta collection by key.
public remove ( array | string $names ) : self
$names array | string
return self
Exemplo n.º 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;
 }