public function MigrateManager::isFinished in Workbench Moderation to Content Moderation 8
Determines if the migration finished.
Return value
bool True if the full migration is considered to have been run; else, false.
See also
isComplete
1 call to MigrateManager::isFinished()
- MigrateManager::isComplete in src/
MigrateManager.php - Determine if the migration is complete.
File
- src/
MigrateManager.php, line 142
Class
- MigrateManager
- Manages migrating from WBM to CM.
Namespace
Drupal\wbm2cmCode
public function isFinished() {
return TRUE == $this->migrateStore
->get('finished');
}