function config_test_config_test_create

Implements hook_ENTITY_TYPE_create().

File

drupal/core/modules/config/tests/config_test/config_test.module, line 96
Provides Config module hook implementations for testing purposes.

Code

function config_test_config_test_create(ConfigTest $config_test) {
  if (Drupal::state()
    ->get('config_test.prepopulate')) {
    $config_test
      ->set('foo', 'baz');
  }
}