function MigrationConfigurationTrait::getConfigFactory
Gets the config factory service.
Return value
\Drupal\Core\Config\ConfigFactoryInterface The config factory service.
File
- 
              core/modules/ migrate_drupal/ src/ MigrationConfigurationTrait.php, line 234 
Class
- MigrationConfigurationTrait
- Configures the appropriate migrations for a given source Drupal database.
Namespace
Drupal\migrate_drupalCode
protected function getConfigFactory() {
  if (!$this->configFactory) {
    $this->configFactory = \Drupal::service('config.factory');
  }
  return $this->configFactory;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
