You are here

public function FeedTypeTamperMeta::__construct in Feeds Tamper 8.2

Constructs a new FeedTypeTamperMeta object.

Parameters

\Drupal\Component\Uuid\UuidInterface $uuid_generator: The Uuid generator.

\Drupal\tamper\TamperManagerInterface $tamper_manager: The Tamper plugin manager.

\Drupal\feeds\FeedTypeInterface $feed_type: The feed type to manage tamper plugins for.

File

src/FeedTypeTamperMeta.php, line 54

Class

FeedTypeTamperMeta
Class for managing tamper plugins for a feed type.

Namespace

Drupal\feeds_tamper

Code

public function __construct(UuidInterface $uuid_generator, TamperManagerInterface $tamper_manager, FeedTypeInterface $feed_type) {
  $this->uuidGenerator = $uuid_generator;
  $this->tamperManager = $tamper_manager;
  $this->feedType = $feed_type;
}