public function CleanState::setEntityTypeId in Feeds 8.3
Sets the entity type ID of the entity ID's on the list.
Parameters
string $entity_type_id: An entity type ID.
Overrides CleanStateInterface::setEntityTypeId
File
- src/
Feeds/ State/ CleanState.php, line 177
Class
- CleanState
- State for the clean stage.
Namespace
Drupal\feeds\Feeds\StateCode
public function setEntityTypeId($entity_type_id) {
// @todo check for valid entity type id.
$this->entityTypeId = $entity_type_id;
}