function FieldStorageConfigTest::createEntity
Same name in other branches
- 8.9.x core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldStorageConfigTest::createEntity()
- 10 core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldStorageConfigTest::createEntity()
- 11.x core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldStorageConfigTest::createEntity()
Overrides ResourceTestBase::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\FunctionalCode
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.