function TermTest::getExpectedCacheTags
The expected cache tags for the GET/HEAD response of the test entity.
Parameters
array|null $sparse_fieldset: If a sparse fieldset is being requested, limit the expected cache tags for this entity's fields to just these fields.
Return value
string[] A set of cache tags.
Overrides ResourceTestBase::getExpectedCacheTags
File
-
core/
modules/ jsonapi/ tests/ src/ Functional/ TermTest.php, line 440
Class
- TermTest
- JSON:API integration test for the "Term" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedCacheTags(?array $sparse_fieldset = NULL) {
$tags = parent::getExpectedCacheTags($sparse_fieldset);
if ($sparse_fieldset === NULL || in_array('description', $sparse_fieldset)) {
$tags = Cache::mergeTags($tags, [
'config:filter.format.plain_text',
'config:filter.settings',
]);
}
return $tags;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.