/**
  * Delete a stopword from the api.
  * @param Stopword $stopword
  * @return mixed
  */
 public function delete(Stopword $stopword)
 {
     return $this->deleteByWord($stopword->getWord(), $stopword->getTagName());
 }
 /**
  * @test
  */
 public function canSetTagName()
 {
     $this->stopword->setTagName("en");
     $this->assertSame("en", $this->stopword->getTagName());
 }