function ShortcutTest::getExpectedCollectionCacheability

Same name and namespace in other branches
  1. 10 core/modules/jsonapi/tests/src/Functional/ShortcutTest.php \Drupal\Tests\jsonapi\Functional\ShortcutTest::getExpectedCollectionCacheability()
  2. 11.x core/modules/jsonapi/tests/src/Functional/ShortcutTest.php \Drupal\Tests\jsonapi\Functional\ShortcutTest::getExpectedCollectionCacheability()
  3. 8.9.x core/modules/jsonapi/tests/src/Functional/ShortcutTest.php \Drupal\Tests\jsonapi\Functional\ShortcutTest::getExpectedCollectionCacheability()

File

core/modules/jsonapi/tests/src/Functional/ShortcutTest.php, line 199

Class

ShortcutTest
JSON:API integration test for the "Shortcut" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

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->addCacheContexts([
      'user',
    ]);
  }
  return $cacheability;
}

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