function FieldStorageConfigTest::createEntity

Same name and namespace in other branches
  1. 10 core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldStorageConfigTest::createEntity()
  2. 11.x core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldStorageConfigTest::createEntity()
  3. 8.9.x core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldStorageConfigTest::createEntity()

File

core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php, line 52

Class

FieldStorageConfigTest
JSON:API integration test for the "FieldStorageConfig" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $field_storage = FieldStorageConfig::create([
    'field_name' => 'true_llama',
    'entity_type' => 'node',
    'type' => 'boolean',
  ]);
  $field_storage->save();
  return $field_storage;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.