objectManager = $objectManager; $this->mappers = $mappers; } /** * Get mapper for entity type * @param string $entityType * @return MapperInterface */ public function getMapper($entityType) { $className = isset($this->mappers[$entityType]) ? $this->mappers[$entityType] : MapperInterface::class; return $this->objectManager->get($className); } }