You are here

public function MigrateManifest::__construct in Migrate Manifest 3.x

Same name and namespace in other branches
  1. 8.2 src/MigrateManifest.php \Drupal\migrate_manifest\MigrateManifest::__construct()
  2. 8 src/MigrateManifest.php \Drupal\migrate_manifest\MigrateManifest::__construct()

Constructs a new MigrateManifest object.

Parameters

$migration_manager:

bool $force: Force operation to regardless of dependencies.

bool $update: Update previously imported items with current data.

File

src/MigrateManifest.php, line 43

Class

MigrateManifest

Namespace

Drupal\migrate_manifest

Code

public function __construct($migration_manager, LoggerInterface $logger, $force = FALSE, $update = FALSE) {
  $this->force = $force;
  $this->update = $update;
  $this->manager = $migration_manager;
  $this->logger = $logger;
}