/**
  * Find the token id using the passed row data and
  * the other translator parameters.
  *
  * @param array $row
  * @return string|null
  */
 protected function findTokenFor(array $row)
 {
     if (isset($row['token']) && $row['token']) {
         return $this->tokenLibrary->filter($row['token']);
     }
     return null;
 }
 public function filter($value)
 {
     return $this->_library->filter($value);
 }