Returns the translator for this job item.
\Drupal\tmgmt\TranslatorInterface The translator entity or NULL if there is none.
Overrides JobItemInterface::getTranslator
public function getTranslator() {
if ($this
->hasTranslator()) {
return $this
->getJob()
->getTranslator();
}
return NULL;
}