remove() 공개 메소드

Remove a meta from the meta collection by key.
public remove ( array | string $names ) : self
$names array | string
리턴 self
예제 #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;
 }