Returns the type of a job item.
\Drupal\tmgmt\JobItemInterface $job_item: The job item.
string A type that describes the job item.
Overrides SourcePluginBase::getType
public function getType(JobItemInterface $job_item) {
$definition = $this->configMapperManager
->getDefinition($this
->getMapperId($job_item));
return $definition['title'];
}