get('entities'); } /** * Retrieve export entity types configuration * * @param string $entity * @return array */ public function getEntityTypes($entity) { $entities = $this->getEntities(); return isset($entities[$entity]) ? $entities[$entity]['types'] : []; } /** * Retrieve export file formats configuration * * @return array */ public function getFileFormats() { return $this->get('fileFormats'); } }