function RestResourceConfigTest::createEntity
Same name in other branches
- 9 core/modules/jsonapi/tests/src/Functional/RestResourceConfigTest.php \Drupal\Tests\jsonapi\Functional\RestResourceConfigTest::createEntity()
- 8.9.x core/modules/jsonapi/tests/src/Functional/RestResourceConfigTest.php \Drupal\Tests\jsonapi\Functional\RestResourceConfigTest::createEntity()
- 11.x core/modules/jsonapi/tests/src/Functional/RestResourceConfigTest.php \Drupal\Tests\jsonapi\Functional\RestResourceConfigTest::createEntity()
Overrides ResourceTestBase::createEntity
File
-
core/
modules/ jsonapi/ tests/ src/ Functional/ RestResourceConfigTest.php, line 55
Class
- RestResourceConfigTest
- JSON:API integration test for the "RestResourceConfig" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
$rest_resource_config = RestResourceConfig::create([
'id' => 'llama',
'plugin_id' => 'dblog',
'granularity' => 'method',
'configuration' => [
'GET' => [
'supported_formats' => [
'json',
],
'supported_auth' => [
'cookie',
],
],
],
]);
$rest_resource_config->save();
return $rest_resource_config;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.