remove() public method

Remove a meta from the meta collection by key.
public remove ( array | string $names ) : self
$names array | string
return self
コード例 #1
0
ファイル: SeoMeta.php プロジェクト: arcanedev/seo-helper
 /**
  * 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;
 }