function EntityTestTest::getExpectedCollectionCacheability
Same name in other branches
- 8.9.x core/modules/jsonapi/tests/src/Functional/EntityTestTest.php \Drupal\Tests\jsonapi\Functional\EntityTestTest::getExpectedCollectionCacheability()
- 10 core/modules/jsonapi/tests/src/Functional/EntityTestTest.php \Drupal\Tests\jsonapi\Functional\EntityTestTest::getExpectedCollectionCacheability()
- 11.x core/modules/jsonapi/tests/src/Functional/EntityTestTest.php \Drupal\Tests\jsonapi\Functional\EntityTestTest::getExpectedCollectionCacheability()
Overrides ResourceTestBase::getExpectedCollectionCacheability
File
-
core/
modules/ jsonapi/ tests/ src/ Functional/ EntityTestTest.php, line 194
Class
- EntityTestTest
- JSON:API integration test for the "EntityTest" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected static function getExpectedCollectionCacheability(AccountInterface $account, array $collection, array $sparse_fieldset = NULL, $filtered = FALSE) {
$cacheability = parent::getExpectedCollectionCacheability($account, $collection, $sparse_fieldset, $filtered);
if ($filtered) {
$cacheability->addCacheTags([
'state:jsonapi__entity_test_filter_access_blacklist',
]);
}
return $cacheability;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.