/**
  * {@inheritdoc}
  */
 public function process($item)
 {
     if ($this->strategy) {
         $this->strategy->setImportExportContext($this->importExportContext);
         $item = $this->strategy->process($item);
     }
     return $item;
 }
Exemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function setEntityName($entityName)
 {
     $this->entityName = $entityName;
     if ($this->dataConverter && $this->dataConverter instanceof EntityNameAwareInterface) {
         $this->dataConverter->setEntityName($this->entityName);
     }
 }