function EntityTestComputedFieldTest::getExpectedCacheTags

Same name in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/EntityTestComputedFieldTest.php \Drupal\Tests\jsonapi\Functional\EntityTestComputedFieldTest::getExpectedCacheTags()
  2. 11.x core/modules/jsonapi/tests/src/Functional/EntityTestComputedFieldTest.php \Drupal\Tests\jsonapi\Functional\EntityTestComputedFieldTest::getExpectedCacheTags()

Overrides ResourceTestBase::getExpectedCacheTags

File

core/modules/jsonapi/tests/src/Functional/EntityTestComputedFieldTest.php, line 182

Class

EntityTestComputedFieldTest
JSON:API integration test for the "EntityTestComputedField" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedCacheTags(?array $sparse_fieldset = NULL) {
    $expected_cache_tags = parent::getExpectedCacheTags($sparse_fieldset);
    if ($sparse_fieldset === NULL || in_array('computed_test_cacheable_string_field', $sparse_fieldset)) {
        $expected_cache_tags = Cache::mergeTags($expected_cache_tags, [
            'field:computed_test_cacheable_string_field',
        ]);
    }
    return $expected_cache_tags;
}

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