You are here

public function Email::setConfigFactory in Search API Saved Searches 8

Sets the config factory.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The new config factory.

Return value

$this

File

src/Plugin/search_api_saved_searches/notification/Email.php, line 122

Class

Email
Provides e-mails as a notification mechanism.

Namespace

Drupal\search_api_saved_searches\Plugin\search_api_saved_searches\notification

Code

public function setConfigFactory(ConfigFactoryInterface $config_factory) {
  $this->configFactory = $config_factory;
  return $this;
}