You are here

public function CrmCoreUserSyncRelationRules::__construct in CRM Core 8.3

Same name and namespace in other branches
  1. 8 modules/crm_core_user_sync/src/CrmCoreUserSyncRelationRules.php \Drupal\crm_core_user_sync\CrmCoreUserSyncRelationRules::__construct()

Constructs a CrmCoreUserSyncRelationRules object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration factory.

string $configName: Name of the configuration object that stores rules.

File

modules/crm_core_user_sync/src/CrmCoreUserSyncRelationRules.php, line 43

Class

CrmCoreUserSyncRelationRules
CrmCoreUserSyncRelation service.

Namespace

Drupal\crm_core_user_sync

Code

public function __construct(ConfigFactoryInterface $config_factory, $configName) {
  $this->configFactory = $config_factory;
  $this->configName = $configName;
}