You are here

public function FeedType::removeMappings in Feeds 8.3

Removes all mappings.

Return value

$this An instance of this class.

Overrides FeedTypeInterface::removeMappings

1 call to FeedType::removeMappings()
FeedType::set in src/Entity/FeedType.php
Sets the value of a property.

File

src/Entity/FeedType.php, line 349

Class

FeedType
Defines the Feeds feed type entity.

Namespace

Drupal\feeds\Entity

Code

public function removeMappings() {
  $this->mappings = [];
  return $this;
}