/**
  * Remove alphabet from storage
  *
  * @param Alphabet $alphabet
  *
  * @return Storage
  */
 public function remove(Alphabet $alphabet)
 {
     unset($this->alphabets[$alphabet->getLanguage()]);
     return $this;
 }