By nikolay shapovalov on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
11.2.x
Introduced in version:
11.2.0
Issue links:
Description:
entity_test_create_bundle() is deprecated and replaced with the \Drupal\entity_test\EntityTestHelper::createBundle().
entity_test_delete_bundle() is deprecated and replaced with the \Drupal\entity_test\EntityTestHelper::deleteBundle().
Before:
entity_test_create_bundle($bundle, $text, $entity_type);
entity_test_delete_bundle($bundle, $entity_type);
After:
use Drupal\entity_test\EntityTestHelper;
EntityTestHelper::createBundle($bundle, $text, $entity_type);
EntityTestHelper::deleteBundle($bundle, $entity_type);
Impacts:
Module developers